无关风月
2025-05-06 6f19ee6018f82cf981135fd81b1608faea53ce7e
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
package com.ruoyi.chargingPile.api.vo;
 
import com.ruoyi.chargingPile.api.model.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel(value = "GovernmentCloudChargingPileVO对象",description = "ChargingPile政务云上传数据VO")
public class GovernmentCloudChargingPileVO {
 
    @ApiModelProperty(value = "合作商")
    private List<Partner> partners;
    @ApiModelProperty(value = "站点")
    private List<Site> sites;
    @ApiModelProperty(value = "计费策略")
    private List<TAccountingStrategy> accountingStrategies;
    @ApiModelProperty(value = "计费策略明细")
    private List<TAccountingStrategyDetail> accountingStrategyDetails;
    @ApiModelProperty(value = "申请充电桩")
    private List<TApplyChargingPile> applyChargingPiles;
    @ApiModelProperty(value = "车库")
    private List<TCarport> carports;
    @ApiModelProperty(value = "枪")
    private List<TChargingGun> chargingGuns;
    @ApiModelProperty(value = "桩")
    private List<TChargingPile> chargingPiles;
    @ApiModelProperty(value = "站点通知")
    private List<TChargingPileNotification> chargingPileNotifications;
    @ApiModelProperty(value = "故障内容")
    private List<TFaultMessage> faultMessages;
    @ApiModelProperty(value = "监控")
    private List<TMonitoringEquipment> monitoringEquipments;
    @ApiModelProperty(value = "停车场")
    private List<TParkingLot> parkingLots;
    @ApiModelProperty(value = "停车记录")
    private List<TParkingRecord> parkingRecords;
    @ApiModelProperty(value = "合作商站点")
    private List<TPartnerSite> partnerSites;
    @ApiModelProperty(value = "保修")
    private List<TRepair> repairs;
    @ApiModelProperty(value = "站点菜单那")
    private List<TSiteMenu> siteMenus;
    @ApiModelProperty(value = "车道")
    private List<TVehicleRamp> vehicleRamps;
 
 
 
 
 
 
 
 
}