吉安感知网项目-后端
linwei
2026-01-09 33ab5566da759239cdde4e80464ee293e4154fc3
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package org.sxkj.fw.cockpit.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 告警记录统计视图对象
 *
 * @author lw
 * @since 2026-01-09
 */
@Data
public class AlarmStatisticsVO {
 
    /**
     * 告警总数
     */
    @ApiModelProperty(value = "告警总数")
    private Integer realTimeAlarmCount;
 
    /**
     * 设备告警数量
     */
    @ApiModelProperty(value = "设备告警数量")
    private Integer deviceAlarmCount;
 
    /**
     * 历史告警数量
     */
    @ApiModelProperty(value = "历史告警数量")
    private Integer historyAlarmCount;
 
 
 
    /**
     * 设备总数
     */
    @ApiModelProperty(value = "设备总数")
    private Integer deviceCount;
 
    /**
     * 无线电数量
     */
    @ApiModelProperty(value = "无线电数量")
    private Integer radioCount;
 
    /**
     * 光电数量
     */
    @ApiModelProperty(value = "光电数量")
    private Integer opticalCount;
 
    /**
     * 雷达数量
     */
    @ApiModelProperty(value = "雷达数量")
    private Integer radarCount;
 
 
}