wjc
3 天以前 ef0dba8548e2813beee2af8c8c3db72c3cb56da0
app/src/main/java/com/hdl/photovoltaic/ui/bean/HouseIdBean.java
@@ -11,9 +11,12 @@
 */
public class HouseIdBean implements Serializable {
    private String homeId;//电站id
    private String debugType="NORMAL";//调试类型(NORMAL =常规调试;SIMPLE =简易调试)
    private String communityId="";//项目id
    private String flowRecordContent="";//流转记录内容
    private String powerStationImage;//电站图片
    private String homeName;//电站名称
    private String installedCapacity;//装机容量
    private String installedCapacity;//组串容量(创建电站时输入的组串容量)
    private String power;//发电功率
    private String todayElectricity;//当日发电量
    private String monthElectricity;//当月发电量
@@ -21,8 +24,19 @@
    private String batteryCapacity;//电池容量
    private String invPower;//逆变器额定功率(单个逆变器额定功率*逆变器数量)
    private int powerStationStatus;//电站状态(电站状态   1:正常(运行),2:离线,3:连接中,4:故障)
    public String getInvPower() {
        return invPower == null ? "" : invPower;
    }
    public void setInvPower(String invPower) {
        this.invPower = invPower;
    }
    private int powerStationStatus;//电站状态(1:正常(运行),2:离线,3:连接中,4:故障,5:离线有故障,6:部分离线)
    private String localSecret;//本地通讯秘钥
    private boolean isMove = false;//表示是否显示移动组件(true显示)
@@ -40,6 +54,46 @@
    private String address;//详细地址
    /**
     * 调试状态
     * Debugging = 调试中
     * WAIT_DELIVERED = 调试完成
     * Delivered = 已交付
     * SECONDARY_DEBUGGIN = 授权调试
     */
    private String debugStatus;
    public String getDebugType() {
        return debugType;
    }
    public void setDebugType(String debugType) {
        this.debugType = debugType;
    }
    public String getCommunityId() {
        return communityId;
    }
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
    public String getFlowRecordContent() {
        return flowRecordContent;
    }
    public void setFlowRecordContent(String flowRecordContent) {
        this.flowRecordContent = flowRecordContent;
    }
    public String getDebugStatus() {
        return debugStatus == null ? "" : debugStatus;
    }
    public void setDebugStatus(String debugStatus) {
        this.debugStatus = debugStatus;
    }
    public String getBatteryCapacity() {
        return batteryCapacity == null ? "" : batteryCapacity;
@@ -201,8 +255,8 @@
     */
    public String getHomeAddress() {
        if (this.location == null) {
            return this.address;
            return this.getAddress();
        }
        return this.location.getNationName() + this.location.getProvinceName() + this.location.getCityName() + this.address;
        return this.location.getNationName() +" "+ this.location.getProvinceName() +" "+ this.location.getCityName() +" "+ this.getAddress();
    }
}