liyong
9 天以前 0d217eeff1f9d23844a54e8dd2ffebd8b4c2c1c7
src/main/java/com/ruoyi/procurementrecord/pojo/CustomStorage.java
@@ -18,8 +18,6 @@
@Data
public class CustomStorage {
    @TableField(exist = false)
    private String ids;
    private static final long serialVersionUID = 1L;
@@ -31,21 +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;
    /**
     * 图片
     */
    @Excel(name = "图片", cellType = Excel.ColumnType.IMAGE)
    private String url;
    /**
     * 出库数量
     */
@@ -90,6 +83,15 @@
     */
    @Excel(name = "入库用户")
    private String createBy;
    /**
     * 待出库数量
     */
    @Excel(name = "待出库数量")
    @TableField(exist = false)
    private BigDecimal inboundNum0 = BigDecimal.ZERO;
    /**
     * 入库用户id
     */
@@ -136,6 +138,7 @@
    /**
     * 美元每件
     */
    @Excel(name = "美元每件")
    @Excel(name = "单价(美元)/件")
    private BigDecimal dollarPrice;
}