jiangping
2025-01-13 cc0d840070c24ceb20180a41f0323bdc0ee03347
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 AlarmHandleDataVO {
 
 
    @ApiModelProperty(value = "月份")
    private String monthStr;
 
    @ApiModelProperty(value = "报警数量")
    private Integer alarmNum;
 
    @ApiModelProperty(value = "误报警数")
    private Integer errNum;
 
    @ApiModelProperty(value = "已处理数量")
    private Integer liftNum;
 
    @ApiModelProperty(value = "进行中数量")
    private Integer processingNum;
 
 
 
 
 
 
 
}