liyong
9 天以前 9d4cf882be7a2ad8d3cc422bcd0dbc461f626f58
src/main/java/com/ruoyi/procurementrecord/pojo/CustomStorage.java
@@ -29,15 +29,16 @@
    @Excel(name = "入库时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date inboundDate;
    /**
     * 编号
     */
    @Excel(name = "编号")
    private String code;
    @TableField(exist = false)
    private String timeStr;
    /**
     * 待出库数量
     */
    @Excel(name = "待出库数量")
    @TableField(exist = false)
    private BigDecimal inboundNum0;
    /**
     * 出库数量
     */
@@ -83,6 +84,15 @@
    @Excel(name = "入库用户")
    private String createBy;
    /**
     * 待出库数量
     */
    @Excel(name = "待出库数量")
    @TableField(exist = false)
    private BigDecimal inboundNum0 = BigDecimal.ZERO;
    /**
     * 入库用户id
     */
    @TableField(fill = FieldFill.INSERT)
@@ -115,5 +125,20 @@
     */
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    /**
     * 每箱数量
     */
    @Excel(name = "每箱数量")
    private Integer boxNum;
    /**
     * 每箱规格
     */
    @Excel(name = "每箱规格")
    private String cartonSpecifications;
    /**
     * 美元每件
     */
    @Excel(name = "单价(美元)/件")
    private BigDecimal dollarPrice;
}