package com.panzhihua.common.model.vos.community.bigscreen;
|
|
import com.panzhihua.common.model.vos.community.StatisticsCommVO;
|
import com.panzhihua.common.model.vos.community.screen.civil.CivilVillageStatisticsVO;
|
import com.panzhihua.common.model.vos.community.screen.event.EventGridIncidentStatisticsVO;
|
import com.panzhihua.common.model.vos.community.screen.event.EventGridStatisticsVO;
|
import com.panzhihua.common.model.vos.screen.ScreenDrawEventPopulationTotalVO;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* @title: GridsGovernanceStatisticsVO
|
* @projectName: 成都呐喊信息技术有限公司-智慧社区项目
|
* @description: 清网治格统计信息
|
* @author: hans
|
* @date: 2021/12/08 14:38
|
*/
|
@Data
|
@ApiModel("清网治格统计信息")
|
public class BigscreenGridsGovernanceStatisticsVO {
|
|
@ApiModelProperty("事件总数")
|
private Integer eventTotal = 0;
|
|
@ApiModelProperty("突发事件报告总数")
|
private Integer eventTFTotal = 0;
|
|
@ApiModelProperty("治安防控事件总数")
|
private Integer eventZATotal = 0;
|
|
@ApiModelProperty("矛盾劝解事件总数")
|
private Integer eventMDTotal = 0;
|
|
@ApiModelProperty("特殊人群服务事件总数")
|
private Integer eventTSTotal = 0;
|
|
@ApiModelProperty("民生服务事件总数")
|
private Integer eventMSTotal = 0;
|
|
@ApiModelProperty("防灾减灾事件总数")
|
private Integer eventFJTotal = 0;
|
|
@ApiModelProperty("法规宣传事件总数")
|
private Integer eventFGTotal = 0;
|
|
@ApiModelProperty("安全巡查")
|
private Integer safety=0;
|
|
@ApiModelProperty("其他事件总数")
|
private Integer otherTotal = 0;
|
|
}
|