| | |
| | | @Data |
| | | public class ProductionPlanDto extends ProductionPlan { |
| | | |
| | | /** |
| | | * 物料编码 |
| | | */ |
| | | @Schema(description = "物料编码") |
| | | @Excel(name = "物料编码") |
| | | private String materialCode; |
| | | |
| | | /** |
| | | * 产品名称 |
| | | */ |
| | | @Schema(description = "产品名称") |
| | | @Excel(name = "产品名称") |
| | | private String productName; |
| | | |
| | | /** |
| | | * 客户名称 |
| | | */ |
| | | @Schema(description = "客户名称") |
| | | @Excel(name = "客户名称") |
| | | private String customerName; |
| | | |
| | | /** |
| | | * 产品规格 |
| | | */ |
| | | @Schema(description = "产品规格") |
| | | @Excel(name = "产品规格") |
| | | private String model; |
| | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate planCompleteTime; |
| | | |
| | | /** |
| | | * 关联物料信息表 |
| | | */ |
| | | @Schema(description = "关联物料信息表ID") |
| | | private Long productMaterialId; |
| | | @Schema(description = "产品ID") |
| | | private Long productId; |
| | | |
| | | /** |
| | | * 强度 |
| | | */ |
| | | @Schema(description = "强度") |
| | | @Excel(name = "强度") |
| | | private String strength; |
| | | @Schema(description = "筛选开始日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate requiredDateStart; |
| | | |
| | | @Schema(description = "筛选结束日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate requiredDateEnd; |
| | | |
| | | } |