| | |
| | | private String productName; |
| | | @Excel(name = "规格型号") |
| | | private String model; |
| | | @Excel(name = "料号") |
| | | private String materialCode; |
| | | @Excel(name = "单位") |
| | | private String unit; |
| | | @Excel(name = "出库来源") |
| | | private String recordType; |
| | | @Excel(name = "出库数量") |
| | | private String stockInNum; |
| | | @Excel(name = "出库时间") |
| | | @Excel(name = "出库时间", 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(isExport = false) |
| | | private String type; |
| | | |
| | | @Excel(isExport = false) |
| | | private String processName; |
| | | } |