| | |
| | | private String monthElectricity;//当月发电量 |
| | | |
| | | |
| | | private String batteryCapacity;//电池容量 |
| | | |
| | | |
| | | private int powerStationStatus;//电站状态(电站状态 1:正常(运行),2:离线,3:连接中,4:故障) |
| | | private String localSecret;//本地通讯秘钥 |
| | | |
| | |
| | | |
| | | private String address;//详细地址 |
| | | |
| | | /** |
| | | * 调试状态 |
| | | * Debugging = 调试中 |
| | | * WAIT_DELIVERED = 调试完成 |
| | | * Delivered = 已交付 |
| | | * SECONDARY_DEBUGGIN = 授权调试 |
| | | */ |
| | | private String debugStatus; |
| | | |
| | | public String getDebugStatus() { |
| | | return debugStatus == null ? "" : debugStatus; |
| | | } |
| | | |
| | | public void setDebugStatus(String debugStatus) { |
| | | this.debugStatus = debugStatus; |
| | | } |
| | | |
| | | |
| | | public String getBatteryCapacity() { |
| | | return batteryCapacity == null ? "" : batteryCapacity; |
| | | } |
| | | |
| | | public void setBatteryCapacity(String batteryCapacity) { |
| | | this.batteryCapacity = batteryCapacity; |
| | | } |
| | | |
| | | public String getDeliverStatus() { |
| | | return deliverStatus == null ? "" : deliverStatus; |
| | | } |