| | |
| | | @Column(columnDefinition="decimal(10,2) comment '应收金额 /元 两位小数'") |
| | | private BigDecimal receivableAmount; |
| | | |
| | | @Schema(description = "合同到期时间") |
| | | @Schema(description = "阶段ID") |
| | | @Column(columnDefinition = "bigint comment '阶段ID'") |
| | | private Long scheduleId; |
| | | |
| | | @Schema(description = "阶段名称") |
| | | @Column(columnDefinition = "VARCHAR(64) comment '阶段名称'") |
| | | private String scheduleName; |
| | | |
| | | @Schema(description = "逾期时间") |
| | | @Column(columnDefinition="datetime comment '合同到期时间'") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date contractExpirTime; |
| | |
| | | @Schema(description = "逾期时长") |
| | | @Column(columnDefinition="decimal(10,0) comment '逾期时长 /天'") |
| | | private BigDecimal overdueDuration; |
| | | |
| | | } |