| | |
| | | @Column(columnDefinition="bigint comment '合同ID'") |
| | | private Long contractId; |
| | | |
| | | @Schema(description = "合同编号") |
| | | @Column(columnDefinition = "VARCHAR(64) comment '合同编号'") |
| | | private String contractNo; |
| | | |
| | | @Schema(description = "收到总公司通知时间") |
| | | @Column(columnDefinition="datetime comment '收到总公司通知时间'") |
| | | private Date confirmTime; |
| | |
| | | @Schema(description = "总额") |
| | | @Column(columnDefinition="decimal(10,2) comment '总额 /元 两位小数'") |
| | | private BigDecimal totalAmount; |
| | | |
| | | @Schema(description = "阶段ID") |
| | | @Column(columnDefinition = "bigint comment '阶段ID'") |
| | | private Long scheduleId; |
| | | |
| | | @Schema(description = "阶段名称") |
| | | @Column(columnDefinition = "VARCHAR(64) comment '阶段名称'") |
| | | private String scheduleName; |
| | | } |