| New file | 
 |  |  | 
 |  |  | 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({"mTotalCountOfReport", | 
 |  |  |         "mTotalCountOfNoReport", | 
 |  |  |         "mTotalCountOfNeverReport", | 
 |  |  |         "mTotalCountOfOpenValve", | 
 |  |  |         "mTotalCountOfCloseValve", | 
 |  |  |         "mTotalCountOfUnknownValve", | 
 |  |  |         "mTotalCountOfAlarm", | 
 |  |  |         "mTotalCountOfNoAlarm", | 
 |  |  |         "mTotalCountOfUnknownAlarm" | 
 |  |  |         }) | 
 |  |  | public class VoMonitorInfo { | 
 |  |  |  | 
 |  |  |     private static final long serialVersionUID = 202502061348321L; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 从某时以来,曾上报过数据的取水口总数 | 
 |  |  |      */ | 
 |  |  |     public Integer mTotalCountOfReport; | 
 |  |  |     /** | 
 |  |  |      * 从某时以来,未曾上报过数据的取水口总数 | 
 |  |  |      */ | 
 |  |  |     public Integer mTotalCountOfNoReport; | 
 |  |  |     /** | 
 |  |  |      * 从未上报过数据的取水口总数 | 
 |  |  |      */ | 
 |  |  |     public Integer mTotalCountOfNeverReport; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 从某时以来,曾阀开取水口总数 | 
 |  |  |      */ | 
 |  |  |     public Integer mTotalCountOfOpenValve ; | 
 |  |  |     /** | 
 |  |  |      * 从某时以来,曾阀关取水口总数 | 
 |  |  |      */ | 
 |  |  |     public Integer mTotalCountOfCloseValve ; | 
 |  |  |     /** | 
 |  |  |      * 从未开过阀的取水口总数 | 
 |  |  |      */ | 
 |  |  |     public Integer mTotalCountOfNeverOpenValve ; | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 从某时以来,曾报警取水口总数 | 
 |  |  |      */ | 
 |  |  |     public Integer mTotalCountOfAlarm ; | 
 |  |  |     /** | 
 |  |  |      * 从某时以来,曾无报警取水口总数 | 
 |  |  |      */ | 
 |  |  |     public Integer mTotalCountOfNoAlarm ; | 
 |  |  |     /** | 
 |  |  |      * 从未报过警取水口总数 | 
 |  |  |      */ | 
 |  |  |     public Integer mTotalCountOfNeverAlarm ; | 
 |  |  |  | 
 |  |  | } |