无关风月
2025-04-19 8d6ef24217033e13b356502f2ade8737a43cce2b
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
package com.ruoyi.jianguan.model;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Null;
import java.math.BigDecimal;
import java.util.List;
 
/**
 * 充电站信息
 * @author zhibing.pu
 * @Date 2025/1/21 11:54
 */
@Data
public class StationInfo {
    /**
     * 充电站ID
     */
    @NotNull
    @JsonProperty("StationID")
    private String stationID;
    /**
     * 充电站唯一编码
     */
    @NotNull
    @JsonProperty("StationUniqueNumber")
    private String stationUniqueNumber;
    /**
     * 运营商ID
     */
    @NotNull
    @JsonProperty("OperatorID")
    private String operatorID;
    /**
     * 设备所属方ID
     * 设备所属运营平台组织机构代码
     */
    @NotNull
    @JsonProperty("EquipmentOwnerID")
    private String equipmentOwnerID;
    /**
     * 充电站名称
     */
    @NotNull
    @JsonProperty("StationName")
    private String stationName;
    /**
     * 充电站国家代码
     */
    @NotNull
    @JsonProperty("CountryCode")
    private String countryCode;
    /**
     * 充电站省市辖区编码
     */
    @NotNull
    @JsonProperty("AreaCode")
    private String areaCode;
    /**
     * 充电站所在县以下行政区划代码
     */
    @NotNull
    @JsonProperty("AreaCodeCountryside")
    private String areaCodeCountryside;
    /**
     * 详细地址
     */
    @NotNull
    @JsonProperty("Address")
    private String address;
    /**
     * 站点电话
     */
    @Null
    @JsonProperty("StationTel")
    private String stationTel;
    /**
     * 站点电话
     */
    @NotNull
    @JsonProperty("ServiceTel")
    private String serviceTel;
    /**
     * 站点分类(1:充电站,2:换电站,3:充换电一体站)
     */
    @NotNull
    @JsonProperty("StationClassification")
    private Integer stationClassification;
    /**
     * 通用类型(1:通用,2:非通用)
     */
    @NotNull
    @JsonProperty("GeneralApplicationType")
    private Integer generalApplicationType;
    /**
     * 站点类型
     */
    @NotNull
    @JsonProperty("StationType")
    private Integer stationType;
    /**
     * 站点状态
     */
    @NotNull
    @JsonProperty("StationStatus")
    private Integer stationStatus;
    /**
     * 车位数量,0:未知
     */
    @NotNull
    @JsonProperty("ParkNums")
    private Integer parkNums;
    /**
     * 经度(保留6位小数)
     */
    @NotNull
    @JsonProperty("StationLng")
    private BigDecimal stationLng;
    /**
     * 纬度(保留6位小数)
     */
    @NotNull
    @JsonProperty("StationLat")
    private BigDecimal stationLat;
    /**
     * 站点引导
     */
    @Null
    @JsonProperty("SiteGuide")
    private String siteGuide;
    /**
     * 建设场所
     */
    @NotNull
    @JsonProperty("Construction")
    private Integer construction;
    /**
     * 站点照片
     * 字符串数组
     */
    @Null
    @JsonProperty("Pictures")
    private List<String> pictures;
    /**
     * 使用车型描述
     */
    @Null
    @JsonProperty("MatchCars")
    private String matchCars;
    /**
     * 服务车型描述
     */
    @Null
    @JsonProperty("SwapMatchCars")
    private List<String> swapMatchCars;
    /**
     * 车位楼层及数量描述
     */
    @Null
    @JsonProperty("ParkInfo")
    private String parkInfo;
    /**
     * 营业时间
     */
    @Null
    @JsonProperty("BusineHours")
    private String busineHours;
    /**
     * 7*24小时营业
     * 0:否
     * 1:是
     */
    @Null
    @JsonProperty("RoundTheClock")
    private Integer roundTheClock;
    /**
     * 停车费类型
     * 0:免费
     * 1:不免费
     * 2:限时免费停车
     * 3:充电限时减免
     * 255:参考场地实际收费标准
     */
    @Null
    @JsonProperty("ParkType")
    private Integer parkType;
    /**
     * 充电电费率描述
     */
    @Null
    @JsonProperty("ElectricityFee")
    private String electricityFee;
    /**
     * 服务费率描述
     */
    @Null
    @JsonProperty("ServiceFee")
    private String serviceFee;
    /**
     * 停车费率描述
     */
    @Null
    @JsonProperty("ParkFee")
    private String parkFee;
    /**
     * 支付方式:刷卡、线上、现金
     */
    @Null
    @JsonProperty("Payment")
    private String payment;
    /**
     * 是否支持预约
     */
    @Null
    @JsonProperty("SupportOrder")
    private Integer supportOrder;
    /**
     * 备注
     */
    @Null
    @JsonProperty("Remark")
    private String remark;
    /**
     * 电费类型
     * 1:商业用电
     * 2:普通工业用电
     * 3:大工业用电
     * 4:其他用电
     */
    @JsonProperty("ElectricityType")
    private Integer electricityType;
    /**
     * 报装类型,是否独立报装
     * 0:否
     * 1:是
     */
    @JsonProperty("BusinessExpandType")
    private Integer businessExpandType;
    /**
     * 报装电源容量
     */
    @JsonProperty("Capacity")
    private BigDecimal capacity;
    /**
     * 站点额定总功率
     */
    @JsonProperty("RatedPower")
    private BigDecimal ratedPower;
    /**
     * 峰谷分时
     * 0:否
     * 1:是
     */
    @JsonProperty("PeriodFee")
    private Integer periodFee;
    /**
     * 正式投运时间 yyyy-MM-dd
     */
    @JsonProperty("OfficialRunTime")
    private String officialRunTime;
    /**
     * 充换电站方位
     * 1:地面-停车场
     * 2:地面-路侧
     * 3:地下停车场
     * 4:立体式停车楼
     */
    @JsonProperty("StationOrientation")
    private Integer stationOrientation;
    /**
     * 充换电站建设面积
     */
    @JsonProperty("StationArea")
    private BigDecimal stationArea;
    /**
     * 充换电站人工值守
     * 0:无
     * 1:有
     */
    @JsonProperty("HavePerson")
    private Integer havePerson;
    /**
     * 视频监控配套情况
     * 0:无
     * 1:有
     */
    @JsonProperty("VideoMonitor")
    private Integer videoMonitor;
    /**
     * 周边配套设施
     * 1:卫生间
     * 2:便利店
     * 3:餐厅
     * 4:休息室
     * 5:雨棚
     */
    @JsonProperty("SupportingFacilities")
    private List<Integer> supportingFacilities;
    /**
     * 是否有小票机
     * 0:无
     * 1:有
     */
    @JsonProperty("PrinterFlag")
    private Integer printerFlag;
    /**
     * 是否有道闸
     * 0:无
     * 1:有
     */
    @JsonProperty("BarrierFlag")
    private Integer barrierFlag;
    /**
     * 是否有地锁
     * 0:无
     * 1:有
     */
    @JsonProperty("ParkingLockFlag")
    private Integer parkingLockFlag;
    /**
     * 充电设备信息列表
     */
    @NotNull
    @JsonProperty("EquipmentInfos")
    private List<EquipmentInfo> equipmentInfos;
    /**
     * 占位费描述
     */
    @Null
    @JsonProperty("OvertimeFee")
    private String overtimeFee;
    /**
     * 占位费信息
     */
    @Null
    @JsonProperty("PlaceHolder")
    private PlaceHolder placeHolder;
    /**
     * 设备所属方名称
     */
    @JsonProperty("EquipmentOwnerName")
    private String equipmentOwnerName;
    /**
     * 供电局用户编号
     */
    @JsonProperty("ResidentNo")
    private String residentNo;
    /**
     * 供电类型
     * 1:直供电
     * 2:转供电
     */
    @JsonProperty("SupplyType")
    private Integer supplyType;
    /**
     * 表号
     */
    @JsonProperty("WattHourMeterNo")
    private String wattHourMeterNo;
    /**
     * 外电功率
     */
    @JsonProperty("ForwardPower")
    private String forwardPower;
    /**
     * 充电站全省唯一备案号
     */
    @JsonProperty("RecordUniqueNo")
    private String recordUniqueNo;
 
 
 
}