| | |
| | | @Data |
| | | @Schema(name = "ProductionPlanVo", description = "生产计划返回对象") |
| | | public class ProductionPlanVo extends ProductionPlan { |
| | | @Schema(description = "物料编码") |
| | | private String materialCode; |
| | | |
| | | @Schema(description = "产品名称") |
| | | private String productName; |
| | |
| | | @Schema(description = "单位") |
| | | private String unit; |
| | | |
| | | @Schema(description = "关联产品物料ID") |
| | | private Long productMaterialId; |
| | | @Schema(description = "产品ID") |
| | | private Long productId; |
| | | |
| | | @Schema(description = "销售合同号") |
| | | private String salesContractNo; |
| | | |
| | | @Schema(description = "客户名称") |
| | | private String customerName; |
| | | |
| | | @Schema(description = "项目名称") |
| | | private String projectName; |
| | | } |