package com.ruoyi.jianguan.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
/**
|
* 充电站统计信息
|
* @author zhibing.pu
|
* @Date 2025/1/21 15:17
|
*/
|
@Data
|
public class StationStatsInfo {
|
/**
|
* 充电站ID
|
*/
|
@NotNull
|
@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
|
@JsonProperty("StartTime")
|
private String startTime;
|
/**
|
* 统计的结束时间
|
* yyyy-MM-dd
|
*/
|
@NotNull
|
@JsonProperty("EndTime")
|
private String endTime;
|
/**
|
* 充电站累计电量 kw/h
|
*/
|
@NotNull
|
@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
|
@JsonProperty("EquipmentStatsInfos")
|
private List<EquipmentStatsInfo> equipmentStatsInfos;
|
}
|