| | |
| | | @Schema(description = "名称") |
| | | @Column(columnDefinition="VARCHAR(200) comment '名称'") |
| | | private String name; |
| | | |
| | | @Schema(description = "编号") |
| | | @Column(columnDefinition="VARCHAR(200) comment '编号'") |
| | | private String number; |
| | |
| | | /** |
| | | * 合同金额 |
| | | */ |
| | | @Schema(description = "合同金额") |
| | | @Column(columnDefinition="double comment '合同金额'") |
| | | @TableField("`output`") |
| | | private Double output; |
| | | |
| | | /** |
| | | * 总量 |
| | | */ |
| | | @Schema(description = "总量") |
| | | @Column(columnDefinition="double comment '总量'") |
| | | private Double countExecutive; |
| | | |
| | | /** |
| | | * 执行量 |
| | | */ |
| | | @Schema(description = "执行量") |
| | | @Column(columnDefinition="double comment '执行量'") |
| | | private Double executive; |
| | | |
| | | /** |
| | | * 合同条款 |
| | | */ |
| | | @Schema(description = "合同条款") |
| | | @TableField(updateStrategy = FieldStrategy.NOT_NULL) |
| | | @Column(columnDefinition="varchar(500) comment '合同条款'") |
| | | private String content; |
| | |
| | | * |
| | | */ |
| | | @TableField(updateStrategy = FieldStrategy.NOT_NULL) |
| | | @Schema(description = "文件名称") |
| | | @Column(columnDefinition="varchar(2000) comment '文件名称'") |
| | | private String fileName; |
| | | |
| | | @TableField(updateStrategy = FieldStrategy.NOT_NULL) |
| | | @Schema(description = "文件地址") |
| | | @Column(columnDefinition="varchar(2000) comment '文件地址'") |
| | | private String filePath; |
| | | |
| | |
| | | @Schema(description = "填报时间") |
| | | @Column(columnDefinition = "datetime comment '填报时间'") |
| | | private Date releaseDate; |
| | | |
| | | @Transient |
| | | @TableField(exist = false) |
| | | private List<ContractItem> contractItemList; |
| | | |
| | | |
| | | |
| | | } |