zhubaomin
2025-03-25 802fc74478ae3f2c4e8ab7cd417f97469c84f157
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voLargeScreen/VoMonitorInfo.java
@@ -10,24 +10,59 @@
 */
@Data
@JsonPropertyOrder({"totalCountOfOnLine",
        "totalCountOfOffLine"
@JsonPropertyOrder({"mTotalCountOfReport",
        "mTotalCountOfNoReport",
        "mTotalCountOfNeverReport",
        "mTotalCountOfOpenValve",
        "mTotalCountOfCloseValve",
        "mTotalCountOfUnknownValve",
        "mTotalCountOfAlarm",
        "mTotalCountOfNoAlarm",
        "mTotalCountOfUnknownAlarm"
        })
public class VoMonitorInfo {
    private static final long serialVersionUID = 202502061348001L;
    private static final long serialVersionUID = 202502061348321L;
    /**
     * 从某时以来,曾上报过数据的总数
     * 从某时以来,曾上报过数据的取水口总数
     */
    public Integer totalCountOfReport ;
    public Integer mTotalCountOfReport;
    /**
     * 从某时以来,未曾上报过数据的总数
     * 从某时以来,未曾上报过数据的取水口总数
     */
    public Integer totalCountOfNoReport ;
    public Integer mTotalCountOfNoReport;
    /**
     * 从未上报过数据的总数
     * 从未上报过数据的取水口总数
     */
    public Integer totalCountOfNeverReport ;
    public Integer mTotalCountOfNeverReport;
    /**
     * 从某时以来,曾阀开取水口总数
     */
    public Integer mTotalCountOfOpenValve ;
    /**
     * 从某时以来,曾阀关取水口总数
     */
    public Integer mTotalCountOfCloseValve ;
    /**
     * 从未开过阀的取水口总数
     */
    public Integer mTotalCountOfNeverOpenValve ;
    /**
     * 从某时以来,曾报警取水口总数
     */
    public Integer mTotalCountOfAlarm ;
    /**
     * 从某时以来,曾无报警取水口总数
     */
    public Integer mTotalCountOfNoAlarm ;
    /**
     * 从未报过警取水口总数
     */
    public Integer mTotalCountOfNeverAlarm ;
}