package org.sxkj.fw.cockpit.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* 设备统计视图对象
|
*
|
* @author lw
|
* @since 2026-01-09
|
*/
|
@Data
|
public class DeviceStatisticsVO {
|
|
/**
|
* 侦测设备数量
|
*/
|
@ApiModelProperty(value = "侦测设备数量")
|
private Integer detectCount;
|
|
/**
|
* 反制设备数量
|
*/
|
@ApiModelProperty(value = "反制设备数量")
|
private Integer countermeasuresCount;
|
|
|
}
|