| | |
| | | // 入库时间 |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "入库时间") |
| | | @Excel(name = "入库时间", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date inboundDate; |
| | | |
| | | /** |
| | | * 待出库数量 |
| | | * 编号 |
| | | */ |
| | | @Excel(name = "待出库数量") |
| | | @Excel(name = "编号") |
| | | private String code; |
| | | |
| | | @TableField(exist = false) |
| | | private BigDecimal inboundNum0; |
| | | private String timeStr; |
| | | |
| | | |
| | | /** |
| | | * 出库数量 |
| | | */ |
| | | @Excel(name = "出库数量") |
| | | @TableField(exist = false) |
| | | private BigDecimal totalInboundNum; |
| | | private BigDecimal totalInboundNum = BigDecimal.ZERO; |
| | | // 物品类型 |
| | | @Excel(name = "物品类型") |
| | | private String itemType; |
| | |
| | | @Excel(name = "入库用户") |
| | | private String createBy; |
| | | /** |
| | | * 待出库数量 |
| | | */ |
| | | @Excel(name = "待出库数量") |
| | | @TableField(exist = false) |
| | | private BigDecimal inboundNum0 = BigDecimal.ZERO; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 入库用户id |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long createUser; |
| | | private Integer createUser; |
| | | |
| | | /** |
| | | * 入库时间 |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDateTime createTime; |
| | | |
| | | /** |
| | | * 修改者 |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Long updateUser; |
| | | private Integer updateUser; |
| | | |
| | | /** |
| | | * 修改时间 |
| | |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | /** |
| | | * 每箱数量 |
| | | */ |
| | | @Excel(name = "每箱数量") |
| | | private Integer boxNum; |
| | | /** |
| | | * 每箱规格 |
| | | */ |
| | | @Excel(name = "每箱规格") |
| | | private String cartonSpecifications; |
| | | /** |
| | | * 美元每件 |
| | | */ |
| | | @Excel(name = "单价(美元)/件") |
| | | private BigDecimal dollarPrice; |
| | | |
| | | } |