| | |
| | | @Data |
| | | public class TopDto { |
| | | private Integer systemState; //系统状态 |
| | | private String systemStateName; |
| | | private Integer devState; //设备状态 |
| | | private String devStateName; |
| | | private Integer battState; //电池状态 |
| | | private String battStateName; |
| | | private Integer pwrState; //电源状态 |
| | | private String pwrStateName; |
| | | private Float vbusVol; //母线电压 |
| | | private Float onlineVol; //在线电压 |
| | | private Integer battALmNum;//电池组实时告警数 |
| | |
| | | |
| | | public TopDto() { |
| | | this.systemState = 0; |
| | | this.systemStateName = ""; |
| | | this.devState = 0; |
| | | this.devStateName = ""; |
| | | this.battState = 0; |
| | | this.battStateName = ""; |
| | | this.pwrState = 0; |
| | | this.pwrStateName=""; |
| | | this.vbusVol = 0.0f; |
| | | this.onlineVol = 0.0f; |
| | | this.battALmNum = 0; |