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;
|
|
|
|
|
|
|
|
|
}
|