| package com.doumee.dao.web.response.platformReport; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * 报警信息 | 
|  * | 
|  * @Author : Rk | 
|  * @create 2024/10/25 14:26 | 
|  */ | 
| @Data | 
| public class AlarmDataVO { | 
|   | 
|     @ApiModelProperty(value = "总数") | 
|     private Integer totalNum; | 
|   | 
|     @ApiModelProperty(value = "真实报警数量") | 
|     private Integer realNum; | 
|   | 
|     @ApiModelProperty(value = "误报警数") | 
|     private Integer errNum; | 
|   | 
|     @ApiModelProperty(value = "已解除数量") | 
|     private Integer liftNum; | 
|   | 
|     @ApiModelProperty(value = "处理中数量") | 
|     private Integer processingNum; | 
|   | 
|     @ApiModelProperty(value = "统计时间开始") | 
|     private String  startDate; | 
|   | 
|     @ApiModelProperty(value = "统计时间结束") | 
|     private String  endDate; | 
|   | 
|   | 
|   | 
|   | 
|   | 
|   | 
|   | 
| } |