| | |
| | | private String installedCapacity;//装机容量 |
| | | private String power;//发电功率 |
| | | private String todayElectricity;//今天发电量 |
| | | |
| | | private int powerStationStatus;//电站状态(电站状态 1:正常(运行),2:离线,3:连接中,4:故障) |
| | | private String localSecret;//本地通讯秘钥 |
| | | |
| | | private boolean isEdit = false;//是否移除电站位置(true表示移除) |
| | | |
| | | public boolean isEdit() { |
| | | return isEdit; |
| | | } |
| | | |
| | | public void setEdit(boolean edit) { |
| | | isEdit = edit; |
| | | } |
| | | |
| | | public String getHomeId() { |
| | | return homeId == null ? "" : homeId; |
| | |
| | | } |
| | | |
| | | public String getInstalledCapacity() { |
| | | return installedCapacity == null ? "" : installedCapacity; |
| | | return installedCapacity == null ? "0" : installedCapacity; |
| | | } |
| | | |
| | | public void setInstalledCapacity(String installedCapacity) { |
| | |
| | | } |
| | | |
| | | public String getPower() { |
| | | return power == null ? "" : power; |
| | | return power == null ? "0" : power; |
| | | } |
| | | |
| | | public void setPower(String power) { |
| | |
| | | public void setLocalSecret(String localSecret) { |
| | | this.localSecret = localSecret; |
| | | } |
| | | |
| | | |
| | | |
| | | } |