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