| | |
| | | private String contractName; |
| | | |
| | | @Schema(description = "甲方id") |
| | | @Column(columnDefinition = "bigint comment '甲方id'") |
| | | @Column(name = "party_a_id",columnDefinition = "bigint comment '甲方id'") |
| | | private Long partyAId; |
| | | |
| | | @Schema(description = "甲方名称") |
| | | @Column(columnDefinition = "VARCHAR(100) comment '甲方名称'") |
| | | @Column(name = "party_a",columnDefinition = "VARCHAR(100) comment '甲方名称'") |
| | | private String partyA; |
| | | |
| | | @Schema(description = "乙方id") |
| | | @Column(columnDefinition = "bigint comment '乙方id'") |
| | | @Column(name = "party_b_id",columnDefinition = "bigint comment '乙方id'") |
| | | private Long partyBId; |
| | | |
| | | @Schema(description = "乙方名称") |
| | | @Column(columnDefinition = "VARCHAR(100) comment '乙方名称'") |
| | | @Column(name = "party_b",columnDefinition = "VARCHAR(100) comment '乙方名称'") |
| | | private String partyB; |
| | | |
| | | @Schema(description = "合同金额") |
| | |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private Long remainingDays; |
| | | |
| | | } |