| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 需求ID */ |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING) |
| | | private Long id; |
| | | |
| | | /** 需求追溯ID */ |
| | |
| | | private String requireTrackId; |
| | | /**单号*/ |
| | | private String docNum; |
| | | |
| | | /**上级物料编码*/ |
| | | private String bomHeaderCode; |
| | | /** bom_line_id */ |
| | | // @Excel(name = "bom_line_id") |
| | | private String bomLineId; |
| | |
| | | |
| | | /** 需求数量 */ |
| | | // @Excel(name = "需求数量") |
| | | private String requireAmount; |
| | | private BigDecimal requireAmount; |
| | | |
| | | /** 净需求量 */ |
| | | // @Excel(name = "净需求量") |
| | |
| | | |
| | | private String delFlag; |
| | | |
| | | /**工单创建时间*/ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "工单创建时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date orderCreateTime; |
| | | } |