| | |
| | | @Column(columnDefinition = "decimal(10,2) comment '已付款金额'") |
| | | private BigDecimal paidAmount; |
| | | |
| | | /** |
| | | @Schema(description = "合同分类") |
| | | @Column(columnDefinition = "VARCHAR(64) comment '合同分类 water_house 水电房屋租赁'") |
| | | private String contractCategory; |
| | | |
| | | @Schema(description = "执行周期") |
| | | @Column(columnDefinition = "char comment '执行周期 1/周 2/月 3/季度 4/半年 5/年'") |
| | | private String execFrequency; |
| | | |
| | | @Schema(description = "执行次数") |
| | | @Column(columnDefinition = "int comment '合同分类 water_house 水电房屋租赁'") |
| | | private Integer execTimes; |
| | | |
| | | @Schema(description = "执行日期后多少天生成应收") |
| | | @Column(columnDefinition = "int comment '执行日期后多少天生成应收'") |
| | | private Integer execDay; |
| | | |
| | | /** |
| | | * 临时字段 - 用于接收审批人名称等关联查询结果 |
| | | */ |
| | | @Transient |