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",
|
"totalCountOfOpenValve",
|
"totalCountOfCloseValve",
|
"totalCountOfUnknownValve"
|
})
|
public class VoCurrentInfo {
|
|
private static final long serialVersionUID = 202502061348001L;
|
|
/**
|
* 在线总数
|
*/
|
public Integer totalCountOfOnLine ;
|
/**
|
* 离线总数
|
*/
|
public Integer totalCountOfOffLine ;
|
|
/**
|
* 阀开总数
|
*/
|
public Integer totalCountOfOpenValve ;
|
/**
|
* 阀关总数
|
*/
|
public Integer totalCountOfCloseValve ;
|
/**
|
* 未知阀门状态总数
|
*/
|
public Integer totalCountOfUnknownValve ;
|
|
/**
|
* 报警总数
|
*/
|
public Integer totalCountOfAlarm ;
|
/**
|
* 无报警总数
|
*/
|
public Integer totalCountOfNoAlarm ;
|
/**
|
* 未知报警状态总数
|
*/
|
public Integer totalCountOfUnknownAlarm ;
|
|
}
|