wjc
2025-04-23 e6a0ff5475e271a6b126ab27de6cf9f230b67512
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
package com.hdl.photovoltaic.ui.bean;
 
/**
 * 电站详情实体类
 */
public class HouseInfoBean extends HouseIdBean {
 
    private String latitude;//纬度
    private String longitude;//经度
    private String timezone;//时区
    private String powerStationType;//电站类型(DOMESTIC_ROOF:家用屋顶,COMMERCIAL_ROOF:商业用屋顶,INDUSTRIAL_ROOF:工业用屋顶,SURFACE_POWER_STATION:地面电站)
    private String workMode;//工作模式(self_use:自发自用,peak_load_shifting:削峰填谷,battery_priority:电池优先,auto:智能模式)
    private long productionTime;//投产日志
    private String monetaryUnit;//货币单位
    private String electrovalence;//电价
    private String totalCost;//总成本
 
    private String zoneType;//区域
 
 
    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 getTimezone() {
        return timezone == null ? "" : timezone;
    }
 
    public void setTimezone(String timezone) {
        this.timezone = timezone;
    }
 
    public String getPowerStationType() {
        return powerStationType == null ? "" : powerStationType;
    }
 
    public void setPowerStationType(String powerStationType) {
        this.powerStationType = powerStationType;
    }
 
    public String getWorkMode() {
        return workMode == null ? "" : workMode;
    }
 
    public void setWorkMode(String workMode) {
        this.workMode = workMode;
    }
 
 
    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;
        }
 
    }
 
 
 
}