liurunyu
2025-02-07 123ed266760b75e0ffb89e24b3cec57d564419a4
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voLargeScreen/VoCurrentInfo.java
@@ -10,11 +10,14 @@
 */
@Data
@JsonPropertyOrder({"totalCountOfOnLine",
        "totalCountOfOffLine",
        "totalCountOfOpenValve",
        "totalCountOfCloseValve",
        "totalCountOfUnknownValve"
@JsonPropertyOrder({"cTotalCountOfOnLine",
        "cTotalCountOfOffLine",
        "cTotalCountOfOpenValve",
        "cTotalCountOfCloseValve",
        "cTotalCountOfUnknownValve",
        "cTotalCountOfAlarm",
        "cTotalCountOfNoAlarm",
        "cTotalCountOfUnknownAlarm"
        })
public class VoCurrentInfo {
@@ -23,36 +26,36 @@
    /**
     * 在线总数
     */
    public Integer totalCountOfOnLine ;
    public Integer cTotalCountOfOnLine;
    /**
     * 离线总数
     */
    public Integer totalCountOfOffLine ;
    public Integer cTotalCountOfOffLine;
    /**
     * 阀开总数
     */
    public Integer totalCountOfOpenValve ;
    public Integer cTotalCountOfOpenValve;
    /**
     * 阀关总数
     */
    public Integer totalCountOfCloseValve ;
    public Integer cTotalCountOfCloseValve;
   /**
     * 未知阀门状态总数
     */
    public Integer totalCountOfUnknownValve ;
    public Integer cTotalCountOfUnknownValve;
    /**
     * 报警总数
     */
    public Integer totalCountOfAlarm ;
    public Integer cTotalCountOfAlarm;
    /**
     * 无报警总数
     */
    public Integer totalCountOfNoAlarm ;
    public Integer cTotalCountOfNoAlarm;
   /**
     * 未知报警状态总数
     */
    public Integer totalCountOfUnknownAlarm ;
    public Integer cTotalCountOfUnknownAlarm;
}