wjc
2025-04-15 cdf49871675e42a5576f725a93eec7ca15294c6f
app/src/main/java/com/hdl/photovoltaic/ui/bean/HouseInfoBean.java
@@ -1,8 +1,10 @@
package com.hdl.photovoltaic.ui.bean;
public class HouseInfoBean extends HouseListBean {
    private Location location;//电站地址
    private String address;//详细地址
/**
 * 电站详情实体类
 */
public class HouseInfoBean extends HouseIdBean {
    private String latitude;//纬度
    private String longitude;//经度
    private String timezone;//时区
@@ -15,22 +17,6 @@
    private String zoneType;//区域
    public Location getLocation() {
        return location == null ? new Location() : location;
    }
    public void setLocation(Location location) {
        this.location = location;
    }
    public String getAddress() {
        return address == null ? "" : address;
    }
    public void setAddress(String address) {
        this.address = address;
    }
    public String getLatitude() {
        return latitude == null ? "" : latitude;
@@ -114,6 +100,7 @@
        this.zoneType = zoneType;
    }
    public static class Location {
        private String nationCode;//国家编码
        private String nationName;//国家名称
@@ -171,4 +158,7 @@
        }
    }
}