| | |
| | | |
| | | @Data |
| | | public class StockInventoryExportData { |
| | | |
| | | |
| | | |
| | | @Excel(name = "产品名称") |
| | | private String productName; |
| | | |
| | |
| | | @Excel(name = "料号") |
| | | private String materialCode; |
| | | |
| | | @Excel(name = "库存数量") |
| | | private BigDecimal qualitity; |
| | | @Excel(name = "合格库存批号") |
| | | private String qualifiedBatchNo; |
| | | |
| | | @Excel(name = "不合格库存批号") |
| | | private String unQualifiedBatchNo; |
| | | |
| | | @Excel(name = "合格库存数量") |
| | | private BigDecimal qualifiedQuantity; |
| | | |
| | | @Excel(name = "不合格库存数量") |
| | | private BigDecimal unQualifiedQuantity; |
| | | |
| | | @Excel(name = "预警数量") |
| | | private BigDecimal warnNum; |
| | | |
| | | @Excel(name = "冻结数量") |
| | | private BigDecimal lockedQuantity; |
| | | @Excel(name = "合格冻结数量") |
| | | private BigDecimal qualifiedLockedQuantity; |
| | | |
| | | @Excel(name = "不合格冻结数量") |
| | | private BigDecimal unQualifiedLockedQuantity; |
| | | |
| | | @Excel(name = "备注") |
| | | private String remark; |
| | |
| | | // @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | // private LocalDateTime updateTime; |
| | | |
| | | |
| | | } |