File was renamed from app/src/main/java/com/hdl/photovoltaic/ui/bean/HouseListBean.java |
| | |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | public class HouseListBean implements Serializable { |
| | | public class HouseIdBean implements Serializable { |
| | | private String homeId;//电站id |
| | | private String homeImage;//电站图片 |
| | | private String homeName;//电站名称 |
| | |
| | | private String power;//发电功率 |
| | | private String todayElectricity;//今天发电量 |
| | | private int powerStationStatus;//电站状态(电站状态 1:正常(运行),2:离线,3:连接中,4:故障) |
| | | private String localSecret;//本地通讯秘钥 |
| | | |
| | | public String getHomeId() { |
| | | return homeId == null ? "" : homeId; |
| | |
| | | public void setPowerStationStatus(int powerStationStatus) { |
| | | this.powerStationStatus = powerStationStatus; |
| | | } |
| | | public String getLocalSecret() { |
| | | return localSecret == null ? "" : localSecret; |
| | | } |
| | | |
| | | public void setLocalSecret(String localSecret) { |
| | | this.localSecret = localSecret; |
| | | } |
| | | |
| | | } |