| | |
| | | @Comment("排产计划标的物") |
| | | public class PlanSubjectMatter extends BaseModel<PlanSubjectMatter> { |
| | | |
| | | @Schema(description = "排产计划Id") |
| | | @Column(columnDefinition = "bigint comment '排产计划Id'") |
| | | private Long planId; |
| | | |
| | | @Schema(description = "产品Id") |
| | | @Column(columnDefinition = "bigint comment '产品Id'") |
| | | private Long productId; |
| | |
| | | @Column(columnDefinition = "VARCHAR(50) comment '产品名称'") |
| | | private String productName; |
| | | |
| | | @Schema(description = "产品型号") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '产品型号'") |
| | | private String productType; |
| | | |
| | | @Schema(description = "产品Erp编码") |
| | | @Column(columnDefinition = "VARCHAR(50) comment '产品Erp编码'") |
| | | private String erpCode; |