| | |
| | | */ |
| | | |
| | | @Data |
| | | @JsonPropertyOrder({"totalCountOfOnLine", |
| | | "totalCountOfOffLine", |
| | | "totalCountOfOpenValve", |
| | | "totalCountOfCloseValve", |
| | | "totalCountOfUnknownValve" |
| | | @JsonPropertyOrder({"cTotalCountOfOnLine", |
| | | "cTotalCountOfOffLine", |
| | | "cTotalCountOfOpenValve", |
| | | "cTotalCountOfCloseValve", |
| | | "cTotalCountOfUnknownValve", |
| | | "cTotalCountOfAlarm", |
| | | "cTotalCountOfNoAlarm", |
| | | "cTotalCountOfUnknownAlarm" |
| | | }) |
| | | public class VoCurrentInfo { |
| | | |
| | |
| | | /** |
| | | * 在线总数 |
| | | */ |
| | | 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; |
| | | |
| | | } |