吉安感知网项目-后端
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
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;
 
 
}