2021与蓝度共同重构项目,服务端
liuhaonan
2022-10-28 d938c951a1669b4df877ffc6521aef17f0fac809
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
package com.sandu.ximon.admin.vo;
 
import lombok.Data;
 
/**
 * @author LiuHaoNan
 * @date 2022/9/27
 * 设备数量统计
 */
@Data
public class DeviceOnLineCountVO {
 
    /**
     * 设备总数量
     */
    private Integer totalCount;
 
    /**
     * 在线数量
     */
    private Integer onlineCount;
 
    /**
     * 离线数量
     */
    private Integer offlineCount = 0;
 
    /**
     * 故障数量
     */
    private Integer errorCount = 0;
}