| | |
| | | @NotNull(message = "污染分类不能为空!") |
| | | private Integer polluteType; |
| | | |
| | | @ApiModelProperty(value = "纬度") |
| | | private String latitude; |
| | | |
| | | @ApiModelProperty(value = "经度") |
| | | private String longitude; |
| | | |
| | | @ApiModelProperty(value = "省市区地址") |
| | | private String address; |
| | | |
| | | @ApiModelProperty(value = "详细地址") |
| | | private String name; |
| | | @ApiModelProperty(value = "整改类型id") |
| | | @NotNull(message = "整改类型不能为空!") |
| | | private Integer changeType; |
| | |
| | | @ApiModelProperty(value = "基础附件") |
| | | private List<FileVo> fileBaseList; |
| | | |
| | | @ApiModelProperty(value = "重点任务类型") |
| | | private Integer keyPoint; |
| | | |
| | | |
| | | public Allocation convert() { |
| | | Allocation allocation = BeanConverts.convert(this, Allocation.class); |
| | | return allocation; |