| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | @ApiModel("大屏首页网格化治理事件数据统计返回参数") |
| | | public class IndexGridEventStatisticsVO { |
| | | |
| | | @ApiModelProperty("突发事件数量") |
| | | private Integer eventTFTotal; |
| | | |
| | | @ApiModelProperty("突发事件占比") |
| | | private BigDecimal tfPercent; |
| | | @ApiModelProperty("治安隐患事件数量") |
| | | private Integer eventZATotal; |
| | | @ApiModelProperty("治安隐患事件占比") |
| | | private BigDecimal zaPercent; |
| | | |
| | | @ApiModelProperty("矛盾纠纷事件数量") |
| | | private Integer eventMDTotal; |
| | | @ApiModelProperty("矛盾纠纷事件占比") |
| | | private BigDecimal mdPercent; |
| | | |
| | | @ApiModelProperty("特殊人员上报数量") |
| | | private Integer eventTSTotal; |
| | | @ApiModelProperty("特殊人员上报占比") |
| | | private BigDecimal tsPercent; |
| | | |
| | | @ApiModelProperty("不稳定因素事件数量") |
| | | private Integer eventBWDTotal; |
| | | |
| | | @ApiModelProperty("不稳定因素事件占比") |
| | | private BigDecimal bwdPercent; |
| | | @ApiModelProperty("公共服务数量") |
| | | private Integer eventGGTotal; |
| | | |
| | | @ApiModelProperty("公共服务占比") |
| | | private BigDecimal ggPercent; |
| | | } |