| | |
| | | |
| | | @ApiModelProperty("门牌号") |
| | | @NotBlank(groups = {AddGroup.class}, message = "门牌号不能为空") |
| | | private Integer houseNum; |
| | | private String houseNum; |
| | | |
| | | @ApiModelProperty("小区(组)") |
| | | private String groupAt; |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @ApiModelProperty("创建时间") |
| | | private Date createAt; |
| | | |
| | | @ApiModelProperty("小区类型(1.城镇 2.农村 3.未知)") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty("小区地址") |
| | | private String address; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @ApiModelProperty("更新时间") |
| | | private Date updateAt; |
| | | |
| | | @ApiModelProperty("栋数") |
| | | private Integer floorTotal = 0; |
| | | |
| | | @ApiModelProperty("户数") |
| | | private Integer houseTotal = 0; |
| | | |
| | | @ApiModelProperty("人口数") |
| | | private Integer populationTotal = 0; |
| | | |
| | | @ApiModelProperty("车辆数") |
| | | private Integer carTotal = 0; |
| | | } |