| | |
| | | @Comment("排产计划") |
| | | public class ProductionPlan extends BaseModel<BusinessCustomer> { |
| | | |
| | | @Schema(description = "所属合同编号") |
| | | /*@Schema(description = "所属合同编号") |
| | | @Column(columnDefinition = "VARCHAR(64) comment '合同编号'") |
| | | private String contractNo; |
| | | |
| | | @Schema(description = "所属合同名称") |
| | | @Column(columnDefinition = "VARCHAR(200) comment '合同名称'") |
| | | private String contractName; |
| | | private String contractName;*/ |
| | | |
| | | @Schema(description = "合同id") |
| | | @Column(columnDefinition = "bigint comment '合同id'") |
| | | private Long contractId; |
| | | |
| | | @Schema(description = "排产计划编号") |
| | | @Column(columnDefinition = "VARCHAR(64) comment '排产计划编号'") |
| | |
| | | |
| | | @Schema(description = "甲方id") |
| | | @Column(columnDefinition = "bigint comment '甲方id'") |
| | | private Long partyAId; |
| | | private Long partyaid; |
| | | |
| | | @Schema(description = "甲方名称") |
| | | @Column(columnDefinition = "VARCHAR(100) comment '甲方名称'") |
| | | private String partyA; |
| | | private String partya; |
| | | |
| | | @Schema(description = "乙方id") |
| | | @Column(columnDefinition = "bigint comment '乙方id'") |
| | | private Long partyBId; |
| | | private Long partybid; |
| | | |
| | | @Schema(description = "乙方名称") |
| | | @Column(columnDefinition = "VARCHAR(100) comment '乙方名称'") |
| | | private String partyB; |
| | | private String partyb; |
| | | |
| | | @Schema(description = "金额") |
| | | /* @Schema(description = "金额") |
| | | @Column(columnDefinition = "double comment '金额'") |
| | | private Double amount; |
| | | |
| | |
| | | |
| | | @Schema(description = "类型(0-生成式 1-备案式)") |
| | | @Column(columnDefinition = "tinyint(2) default 0 comment '类型'") |
| | | private Integer contractType; |
| | | private Integer contractType;*/ |
| | | |
| | | @Schema(description = "供应属性 0-成品 1-备件 2-大修 3-其他") |
| | | /*@Schema(description = "供应属性 0-成品 1-备件 2-大修 3-其他") |
| | | @Column(columnDefinition = "tinyint(2) default 0 comment '供应属性 0-成品 1-备件 2-大修 3-其他'") |
| | | private Integer supplyAttribute; |
| | | private Integer supplyAttribute;*/ |
| | | |
| | | @Schema(description = "计划状态(0-草稿 1-已生效 2-已终止 3-已过期)") |
| | | @Column(columnDefinition = "tinyint(2) default 0 comment '计划状态'") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "服务属性(0-产品销售 1-无形服务)") |
| | | @Column(columnDefinition = "tinyint(2) default 0 comment '服务属性'") |
| | | private Integer attribute; |
| | | @Schema(description = "是否推送erp(0-没有 1-推送)") |
| | | @Column(columnDefinition = "tinyint(2) default 0 comment '是否推送erp(0-没有 1-推送)'") |
| | | private Integer sendErp; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | /*@Schema(description = "服务属性(0-产品销售 1-无形服务)") |
| | | @Column(columnDefinition = "tinyint(2) default 0 comment '服务属性'") |
| | | private Integer attribute;*/ |
| | | |
| | | /* @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @Schema(description = "签署日期") |
| | | @Column(columnDefinition = "VARCHAR(64) comment '签署日期'") |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @Schema(description = "到期日期") |
| | | @Column(columnDefinition = "VARCHAR(64) comment '到期日期'") |
| | | private String expirationDate; |
| | | private String expirationDate;*/ |
| | | |
| | | @Schema(description = "备注") |
| | | @Column(columnDefinition = "TEXT comment '备注'") |
| | | private String remark; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | /*@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @Schema(description = "审批时间") |
| | | @Column(columnDefinition = "datetime comment '审批时间'") |
| | | private String approveTime; |
| | | private String approveTime;*/ |
| | | |
| | | /*@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm") |
| | | @Schema(description = "转成合同时间") |
| | | @Column(columnDefinition = "datetime comment '转成合同时间'") |
| | | private String contractTime;*/ |
| | | |
| | | /** |
| | | * 标的物 |