wjc
2023-06-12 390261037c530be2a59e99a93ed44f6817d0d006
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
package com.hdl.photovoltaic.ui.bean;
 
public class HouseInfoBean {
    private String homeId;//电站id
    private Location location;//电站地址
    private String address;//详细地址
    private String latitude;//纬度
    private String longitude;//经度
    private String homeName;//电站名称
    private String timezone;//时区
    private int powerStationType;//电站类型(DOMESTIC_ROOF:家用屋顶,COMMERCIAL_ROOF:商业用屋顶,INDUSTRIAL_ROOF:工业用屋顶,SURFACE_POWER_STATION:地面电站)
    private int workMode;//工作模式(self_use:自发自用,peak_load_shifting:削峰填谷,battery_priority:电池优先,auto:智能模式)
    private String installedCapacity;//装机容量
    private long productionTime;//投产日志
    private String monetaryUnit;//货币单位
    private String electrovalence;//电价
    private String totalCost;//总成本
 
 
    private String zoneType;//区域
 
    public String getHomeId() {
        return homeId == null ? "" : homeId;
    }
 
    public void setHomeId(String homeId) {
        this.homeId = homeId;
    }
 
    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;
    }
 
    public void setLatitude(String latitude) {
        this.latitude = latitude;
    }
 
    public String getLongitude() {
        return longitude == null ? "" : longitude;
    }
 
    public void setLongitude(String longitude) {
        this.longitude = longitude;
    }
 
    public String getHomeName() {
        return homeName == null ? "" : homeName;
    }
 
    public void setHomeName(String homeName) {
        this.homeName = homeName;
    }
 
    public String getTimezone() {
        return timezone == null ? "" : timezone;
    }
 
    public void setTimezone(String timezone) {
        this.timezone = timezone;
    }
 
    public int getPowerStationType() {
        return powerStationType;
    }
 
    public void setPowerStationType(int powerStationType) {
        this.powerStationType = powerStationType;
    }
 
    public int getWorkMode() {
        return workMode;
    }
 
    public void setWorkMode(int workMode) {
        this.workMode = workMode;
    }
 
    public String getInstalledCapacity() {
        return installedCapacity == null ? "" : installedCapacity;
    }
 
    public void setInstalledCapacity(String installedCapacity) {
        this.installedCapacity = installedCapacity;
    }
 
    public long getProductionTime() {
        return productionTime;
    }
 
    public void setProductionTime(long productionTime) {
        this.productionTime = productionTime;
    }
 
    public String getMonetaryUnit() {
        return monetaryUnit == null ? "" : monetaryUnit;
    }
 
    public void setMonetaryUnit(String monetaryUnit) {
        this.monetaryUnit = monetaryUnit;
    }
 
    public String getElectrovalence() {
        return electrovalence == null ? "" : electrovalence;
    }
 
    public void setElectrovalence(String electrovalence) {
        this.electrovalence = electrovalence;
    }
 
    public String getTotalCost() {
        return totalCost == null ? "" : totalCost;
    }
 
    public void setTotalCost(String totalCost) {
        this.totalCost = totalCost;
    }
 
    public String getZoneType() {
        return zoneType == null ? "" : zoneType;
    }
 
    public void setZoneType(String zoneType) {
        this.zoneType = zoneType;
    }
 
    public static class Location {
        private String nationCode;//国家编码
        private String nationName;//国家名称
        private String provinceCode;//省编码
        private String provinceName;//省名称
        private String cityCode;//是编码
        private String cityName;//是名称
 
        public String getNationCode() {
            return nationCode == null ? "" : nationCode;
        }
 
        public void setNationCode(String nationCode) {
            this.nationCode = nationCode;
        }
 
        public String getNationName() {
            return nationName == null ? "" : nationName;
        }
 
        public void setNationName(String nationName) {
            this.nationName = nationName;
        }
 
        public String getProvinceCode() {
            return provinceCode == null ? "" : provinceCode;
        }
 
        public void setProvinceCode(String provinceCode) {
            this.provinceCode = provinceCode;
        }
 
        public String getCityCode() {
            return cityCode == null ? "" : cityCode;
        }
 
        public void setCityCode(String cityCode) {
            this.cityCode = cityCode;
        }
 
        public String getCityName() {
            return cityName == null ? "" : cityName;
        }
 
        public void setCityName(String cityName) {
            this.cityName = cityName;
        }
 
        public String getProvinceName() {
            return provinceName == null ? "" : provinceName;
        }
 
        public void setProvinceName(String provinceName) {
            this.provinceName = provinceName;
        }
 
    }
}