| | |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class ContractSubjectMatter extends BaseModel<ContractSubjectMatter> { |
| | | |
| | | @Schema(description = "排产计划ID") |
| | | @Column(columnDefinition = "bigint comment '排产计划ID'") |
| | | private Long productionPlanId; |
| | | |
| | | @Schema(description = "排产计划名称") |
| | | @Column(columnDefinition = "VARCHAR(200) comment '排产计划名称'") |
| | | private String productionPlanName; |
| | | |
| | | @Schema(description = "关联合同ID") |
| | | @Column(columnDefinition = "bigint comment '关联合同ID'") |
| | | private Long contractId; |
| | | |
| | | @Schema(description = "合同名称") |
| | | @Column(columnDefinition = "VARCHAR(200) comment '合同名称'") |
| | | private String contractName; |
| | | @Schema(description = "标的物行号") |
| | | @Column(columnDefinition = "VARCHAR(10) comment '标的物行号'") |
| | | private String lineNo; |
| | | |
| | | @Schema(description = "标的物名称") |
| | | @Column(columnDefinition = "VARCHAR(200) comment '标的物名称'") |