maven
4 天以前 70a56e3ba7596074f11d6b8f406aae0b61ab0152
src/main/java/com/ruoyi/procurementrecord/pojo/CustomStorage.java
@@ -18,6 +18,8 @@
@Data
public class CustomStorage {
    @TableField(exist = false)
    private String ids;
    private static final long serialVersionUID = 1L;
@@ -38,6 +40,11 @@
    @Excel(name = "待出库数量")
    @TableField(exist = false)
    private BigDecimal inboundNum0;
    /**
     * 图片
     */
    private String url;
    /**
     * 出库数量
     */
@@ -115,5 +122,19 @@
     */
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
    /**
     * 每箱数量
     */
    @Excel(name = "每箱数量")
    private Integer boxNum;
    /**
     * 每箱规格
     */
    @Excel(name = "每箱规格")
    private String cartonSpecifications;
    /**
     * 美元每件
     */
    @Excel(name = "美元每件")
    private BigDecimal dollarPrice;
}