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
package com.dy.pipIrrGlobal.voLargeScreen;
 
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.Data;
 
/**
 * @Author: liurunyu
 * @Date: 2025/2/6 10:40
 * @Description 监测信息
 */
 
@Data
@JsonPropertyOrder({"totalCountOfOnLine",
        "totalCountOfOffLine"
        })
public class VoMonitorInfo {
 
    private static final long serialVersionUID = 202502061348001L;
 
    /**
     * 从某时以来,曾上报过数据的总数
     */
    public Integer totalCountOfReport ;
    /**
     * 从某时以来,未曾上报过数据的总数
     */
    public Integer totalCountOfNoReport ;
    /**
     * 从未上报过数据的总数
     */
    public Integer totalCountOfNeverReport ;
 
}