| | |
| | | package com.panzhihua.common.model.vos.area; |
| | | |
| | | import com.panzhihua.common.model.vos.community.screen.event.EventPopulationSpecialStatisticsVO; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | public class StreetAndBuildVO { |
| | | |
| | | |
| | | /** |
| | | * 社区id |
| | | */ |
| | | private String communityId; |
| | | /** |
| | | * 社区名称 |
| | | */ |
| | |
| | | /** |
| | | * 人口数量 |
| | | */ |
| | | private Integer peopleNum; |
| | | private Integer peopleNum = 0; |
| | | |
| | | /** |
| | | * 小区数量 |
| | | */ |
| | | private Integer villageNum; |
| | | private Integer villageNum = 0; |
| | | |
| | | /** |
| | | * 房屋数量 |
| | | */ |
| | | private Integer buildNum; |
| | | private Integer buildNum = 0; |
| | | |
| | | @ApiModelProperty("特殊人口数据") |
| | | private EventPopulationSpecialStatisticsVO specialStatisticsVo; |
| | | } |