| | |
| | | private String buildAddress; |
| | | |
| | | /** |
| | | * 建设地址(村) |
| | | */ |
| | | @ApiModelProperty(value = "建设地址(村)") |
| | | @TableField("\"build_address_village\"") |
| | | private String buildAddressVillage; |
| | | |
| | | /** |
| | | * 工程规模 |
| | | */ |
| | | @ApiModelProperty(value = "工程规模") |
| | |
| | | private String resFunc; |
| | | |
| | | /** |
| | | * 工程开工时间 |
| | | */ |
| | | @ApiModelProperty(value = "工程开工时间") |
| | | @TableField("\"start_time\"") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date startTime; |
| | | |
| | | /** |
| | | * 下闸蓄水时间 |
| | | */ |
| | | @ApiModelProperty(value = "下闸蓄水时间") |
| | | @TableField("\"water_storage_tm\"") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date waterStorageTm; |
| | | |
| | | /** |
| | | * 最终填报状态(总状态)(0:填写中,1:审核中,2:审核通过) |
| | | */ |
| | | @ApiModelProperty(value = "填报状态(0:填写中,1:审核中,2:审核通过) ") |
| | | @TableField("\"check_state\"") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Integer finalState; |
| | | |
| | | /** |
| | | * 填报状态(0:填写中,1:审核中,2:审核通过) |
| | | */ |
| | | @ApiModelProperty(value = "填报状态(0:填写中,1:审核中,2:审核通过) ") |