wjc
2025-04-23 e6a0ff5475e271a6b126ab27de6cf9f230b67512
app/src/main/java/com/hdl/photovoltaic/ui/bean/CloudInverterDeviceBean.java
@@ -278,12 +278,12 @@
     */
    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();
    }
    public String getHomeNameAndDeviceName() {
        return homeName + "_" + this.getName();
        return this.getHomeName() + "_" + this.getName();
    }
}