wjc
2025-04-15 3b7a44351f3c961812ffa837302518646eae5b0d
app/src/main/java/com/hdl/photovoltaic/ui/bean/CloudInverterDeviceBean.java
@@ -127,7 +127,8 @@
    }
    public String getSid() {
        return sid == null ? "" : sid;
        return TextUtils.isEmpty(sid) ? "" : sid;
    }
    public void setSid(String sid) {
@@ -279,7 +280,7 @@
        if (this.location == null) {
            return this.address;
        }
        return this.location.getNationName() + this.location.getProvinceName() + this.location.getCityName() + this.address;
        return this.location.getNationName() + " " + this.location.getProvinceName() + " " + this.location.getCityName() + " " + this.address;
    }
    public String getHomeNameAndDeviceName() {