mac
2023-12-21 f9956641e92cce3ece4cdff523a6e453f159d268
app/src/main/java/com/hdl/photovoltaic/ui/bean/HouseInfoBean.java
@@ -1,6 +1,9 @@
package com.hdl.photovoltaic.ui.bean;
public class HouseInfoBean extends HouseListBean {
/**
 * 电站详情实体类
 */
public class HouseInfoBean extends HouseIdBean {
    private Location location;//电站地址
    private String address;//详细地址
    private String latitude;//纬度
@@ -114,6 +117,7 @@
        this.zoneType = zoneType;
    }
    public static class Location {
        private String nationCode;//国家编码
        private String nationName;//国家名称
@@ -171,4 +175,17 @@
        }
    }
    /**
     * 拼住宅地址
     *
     * @return 住宅地址
     */
    public String getHomeAddress() {
        if (this.location == null) {
            return this.address;
        }
        return this.location.nationName + this.location.provinceName + this.location.cityName + this.address;
    }
}