| | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.math.BigInteger; |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | |
| | | @Excel(name = "主件料号") |
| | | private String mainPartNumber; |
| | | |
| | | /** 主件客户 */ |
| | | @Schema(description = "主件客户,来自ERP", type = "String") |
| | | @Excel(name = "主件客户") |
| | | private String customer; |
| | | |
| | | /** 主件订单交期 */ |
| | | @Schema(description = "主件订单交期,来自ERP", type = "String") |
| | | @Excel(name = "主件订单交期") |
| | | private BigInteger mainOrderDelivery; |
| | | |
| | | /** 业务类型 */ |
| | | @Schema(description = "业务类型", type = "String") |
| | | @Excel(name = "业务类型") |
| | | private String businessType; |
| | | |
| | | /** 番号 */ |
| | | @Schema(description = "需求追溯号,由APS产生", type = "String") |
| | | @Excel(name = "番号") |
| | | private String designation; |
| | | |
| | | /** 单据号 */ |
| | | @Schema(description = "单据号", type = "String") |
| | |
| | | @Excel(name = "生产数量") |
| | | private BigDecimal productionQuantity; |
| | | |
| | | /** 工单创建时间 */ |
| | | @Schema(description = "工单创建时间,来自ERP", type = "String") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "工单创建时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date orderCreateTime; |
| | | |
| | | /** 工单审核时间 */ |
| | | @Schema(description = "工单审核时间,来自ERP", type = "String") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "工单审核时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date approveOn; |
| | | |
| | | /** 工单开工时间 */ |
| | | @Schema(description = "工单开工时间,来自ERP", type = "String") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "工单开工时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date startWorkDate; |
| | | |
| | | /** 再次确认完工时间 */ |
| | | @Schema(description = "再次确认完工时间,来自APS", type = "String") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "再次确认完工时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date workOrderConfirmTime; |
| | | |
| | | /** 计划完工日 */ |
| | | @Schema(description = "计划完工日", type = "String") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "计划完工日", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date planEndDay; |
| | | |
| | | /** 版本号 */ |
| | | @Schema(description = "生产工厂,来自ERP", type = "String") |
| | | @Excel(name = "生产工厂") |
| | | private String productionBase; |
| | | |
| | | /** 版本号 */ |
| | | @Schema(description = "齐套状况,来自ERP", type = "String") |
| | | @Excel(name = "齐套状况") |
| | | private String kittingCondition; |
| | | |
| | | /** 计划齐套时间 */ |
| | | @Schema(description = "计划齐套时间,来自ERP", type = "String") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "计划齐套时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date planKittingTime; |
| | | |
| | | /** 工序号 */ |
| | | @Excel(name = "工序号") |
| | | private String processNumber; |