wjc
2025-05-12 1dd74507e6e80abf235c1ea6c33bdda0987510af
app/src/main/java/com/hdl/photovoltaic/ui/bean/HouseIdBean.java
@@ -33,7 +33,7 @@
    }
    private int powerStationStatus;//电站状态(电站状态   1:正常(运行),2:离线,3:连接中,4:故障)
    private int powerStationStatus;//电站状态(1:正常(运行),2:离线,3:连接中,4:故障,5:离线有故障,6:部分离线)
    private String localSecret;//本地通讯秘钥
    private boolean isMove = false;//表示是否显示移动组件(true显示)
@@ -230,8 +230,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();
    }
}