|  |  | 
 |  |  |  */ | 
 |  |  |  | 
 |  |  | @Data | 
 |  |  | @JsonPropertyOrder({"totalCountOfOnLine", | 
 |  |  |         "totalCountOfOffLine", | 
 |  |  |         "totalCountOfOpenValve", | 
 |  |  |         "totalCountOfCloseValve", | 
 |  |  |         "totalCountOfUnknownValve" | 
 |  |  | @JsonPropertyOrder({"cTotalCountOfOnLine", | 
 |  |  |         "cTotalCountOfOffLine", | 
 |  |  |         "cTotalCountOfOpenValve", | 
 |  |  |         "cTotalCountOfCloseValve", | 
 |  |  |         "cTotalCountOfUnknownValve", | 
 |  |  |         "cTotalCountOfAlarm", | 
 |  |  |         "cTotalCountOfNoAlarm", | 
 |  |  |         "cTotalCountOfUnknownAlarm" | 
 |  |  |         }) | 
 |  |  | public class VoCurrentInfo { | 
 |  |  |  | 
 |  |  |     private static final long serialVersionUID = 202502061348001L; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 在线总数 | 
 |  |  |      * 在线取水口总数 | 
 |  |  |      */ | 
 |  |  |     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; | 
 |  |  |  | 
 |  |  | } |