| | |
| | | @Data |
| | | public class StockInventoryExportData { |
| | | |
| | | @Excel(name ="仓库编码") |
| | | private String warehouseCode; |
| | | @Excel(name ="仓库") |
| | | private String warehouseName; |
| | | |
| | | @Excel(name = "存货编码") |
| | | private String productCode; |
| | | |
| | | @Excel(name = "产品名称") |
| | | @Excel(name = "存货") |
| | | private String productName; |
| | | |
| | | @Excel(name = "规格") |
| | | @Excel(name = "规格型号") |
| | | private String model; |
| | | |
| | | @Excel(name = "单位") |
| | | @Excel(name = "主单位") |
| | | private String unit; |
| | | |
| | | @Excel(name = "库存数量") |
| | | @Excel(name = "辅单位") |
| | | private String subUnit; |
| | | |
| | | @Excel(name = "数量(主单位)") |
| | | private BigDecimal qualitity; |
| | | |
| | | @Excel(name = "预警数量") |
| | | private BigDecimal warnNum; |
| | | |
| | | @Excel(name = "冻结数量") |
| | | private BigDecimal lockedQuantity; |
| | | |
| | | @Excel(name = "备注") |
| | | private String remark; |
| | | @Excel(name = "数量(辅单位)") |
| | | private BigDecimal subQualitity; |
| | | // |
| | | // @Excel(name = "最新更新时间") |
| | | // @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |