| | |
| | | @Data |
| | | public class CustomStorage { |
| | | |
| | | @TableField(exist = false) |
| | | private String ids; |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | /** |
| | | * 图片 |
| | | */ |
| | | @Excel(name = "图片", cellType = Excel.ColumnType.IMAGE, height = 114, width = 25) |
| | | private String url; |
| | | // 入库时间 |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @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; |
| | | |
| | | /** |
| | | * 图片 |
| | | */ |
| | | private String url; |
| | | /** |
| | | * 出库数量 |
| | | */ |
| | |
| | | */ |
| | | @Excel(name = "入库用户") |
| | | private String createBy; |
| | | /** |
| | | * 待出库数量 |
| | | */ |
| | | @Excel(name = "待出库数量") |
| | | @TableField(exist = false) |
| | | private BigDecimal inboundNum0 = BigDecimal.ZERO; |
| | | |
| | | |
| | | /** |
| | | * 出库数量 |
| | | */ |
| | | @Excel(name = "出库数量") |
| | | @TableField(exist = false) |
| | | private BigDecimal totalInboundNum = BigDecimal.ZERO; |
| | | /** |
| | | * 入库用户id |
| | | */ |
| | |
| | | /** |
| | | * 美元每件 |
| | | */ |
| | | @Excel(name = "美元每件") |
| | | @Excel(name = "单价(美元)/件") |
| | | private BigDecimal dollarPrice; |
| | | |
| | | } |