package com.panzhihua.common.model.vos.community.screen.event;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @title: EventComprehensiveGovernanceStatisticsVO
|
* @projectName: 成都呐喊信息技术有限公司-智慧社区项目
|
* @description: 西区大数据分析平台-综合治理信息
|
* @author: lyq
|
* @date: 2021/12/14 10:53
|
*/
|
@Data
|
@ApiModel("西区大数据分析平台-一标三实特殊人群信息")
|
public class EventPopulationSpecialStatisticsVO {
|
|
@ApiModelProperty("残疾人")
|
private Integer cjTotal = 0;
|
|
@ApiModelProperty("低保户")
|
private Integer dbTotal = 0;
|
|
@ApiModelProperty("高龄老人 》=80")
|
private Integer glTotal = 0;
|
|
@ApiModelProperty("特殊情况")
|
private Integer tsTotal = 0;
|
|
@ApiModelProperty("特扶家庭")
|
private Integer tfTotal = 0;
|
|
@ApiModelProperty("退役军人")
|
private Integer tyTotal = 0;
|
|
@ApiModelProperty("留守儿童")
|
private Integer lsTotal = 0;
|
|
@ApiModelProperty(value = "吸毒人员",hidden = true)
|
private Integer xdTotal = 0;
|
|
@ApiModelProperty(value = "社区矫正人员",hidden = true)
|
private Integer jzTotal = 0;
|
|
@ApiModelProperty(value = "邪教人员",hidden = true)
|
private Integer xjTotal = 0;
|
|
@ApiModelProperty(value = "刑释人员",hidden = true)
|
private Integer xsTotal = 0;
|
|
@ApiModelProperty(value = "上访人员",hidden = true)
|
private Integer sfTotal = 0;
|
|
@ApiModelProperty(value = "重精人员",hidden = true)
|
private Integer zjTotal = 0;
|
|
@ApiModelProperty("老年人(》=60)")
|
private Integer lnTotal = 0;
|
|
@ApiModelProperty("其他")
|
private Integer otherTotal = 0;
|
|
}
|