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;
|
|
|
}
|