| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | * 充电站ID |
| | | */ |
| | | @NotNull |
| | | private String StationID; |
| | | @JsonProperty("StationID") |
| | | private String stationID; |
| | | /** |
| | | * 设备所属方ID |
| | | * 设备所属运营平台组织机构代码 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("EquipmentOwnerID") |
| | | private String equipmentOwnerID; |
| | | /** |
| | | * 运营商ID |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("OperatorID") |
| | | private String operatorID; |
| | | /** |
| | | * 站点分类 1:充电站 |
| | | * 2:换电站 |
| | | * 3:充换电一体站 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("StationClassification") |
| | | private Integer stationClassification; |
| | | /** |
| | | * 统计的开始时间 |
| | | * yyyy-MM-dd |
| | | */ |
| | | @NotNull |
| | | private String StartTime; |
| | | @JsonProperty("StartTime") |
| | | private String startTime; |
| | | /** |
| | | * 统计的结束时间 |
| | | * yyyy-MM-dd |
| | | */ |
| | | @NotNull |
| | | private String EndTime; |
| | | @JsonProperty("EndTime") |
| | | private String endTime; |
| | | /** |
| | | * 充电站累计电量 kw/h |
| | | */ |
| | | @NotNull |
| | | private BigDecimal StationElectricity; |
| | | @JsonProperty("StationElectricity") |
| | | private BigDecimal stationElectricity; |
| | | /** |
| | | * 充换电站累计 |
| | | * 充电量 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("StationTotalChargeEnergy") |
| | | private BigDecimal stationTotalChargeEnergy; |
| | | |
| | | /** |
| | | * 充换电站累计 |
| | | * 告警数量 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("StationTotalWarningNum") |
| | | private Integer stationTotalWarningNum; |
| | | /** |
| | | 充换电站累计 |
| | | 其他电量 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("StationTotalOtherEnergy") |
| | | private BigDecimal stationTotalOtherEnergy; |
| | | /** |
| | | 充换电站累计 |
| | | 充电次数 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("StationTotalChargeNum") |
| | | private Integer stationTotalChargeNum; |
| | | /** |
| | | * 充电设备统计信息列表 |
| | | */ |
| | | @NotNull |
| | | private List<EquipmentStatsInfo> EquipmentStatsInfos; |
| | | @JsonProperty("EquipmentStatsInfos") |
| | | private List<EquipmentStatsInfo> equipmentStatsInfos; |
| | | } |