| | |
| | | */ |
| | | |
| | | @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 ; |
| | | |
| | | } |