feat(stock): 添加批号字段并优化出入库记录导出功能
- 在StockInRecordExportData中新增批号字段
- 在StockInventoryExportData中新增批号字段
- 在StockOutRecordExportData中新增批号字段并修复出库数量字段名
- 在StockUnInventoryExportData中新增批号字段
- 优化入库和出库时间字段的Excel格式配置
- 统一所有导出数据类中的批号字段定义
| | |
| | | private String model; |
| | | @Excel(name = "单位") |
| | | private String unit; |
| | | @Excel(name = "批号") |
| | | private String batchNo; |
| | | @Excel(name = "入库来源") |
| | | private String recordType; |
| | | @Excel(name = "入库数量") |
| | | private String stockInNum; |
| | | @Excel(name = "入库时间") |
| | | @Excel(name = "入库时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTime; |
| | |
| | | @Excel(name = "单位") |
| | | private String unit; |
| | | |
| | | @Excel(name = "批号") |
| | | private String batchNo; |
| | | |
| | | |
| | | @Excel(name = "合格库存数量") |
| | | private BigDecimal qualifiedQuantity; |
| | | |
| | |
| | | private String model; |
| | | @Excel(name = "单位") |
| | | private String unit; |
| | | @Excel(name = "批号") |
| | | private String batchNo; |
| | | @Excel(name = "出库来源") |
| | | private String recordType; |
| | | @Excel(name = "出库数量") |
| | | private String stockInNum; |
| | | @Excel(name = "出库时间") |
| | | private String stockOutNum; |
| | | @Excel(name = "出库时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTime; |
| | |
| | | @Excel(name = "单位") |
| | | private String unit; |
| | | |
| | | @Excel(name = "批号") |
| | | private String batchNo; |
| | | @Excel(name = "库存数量") |
| | | private BigDecimal qualitity; |
| | | |