| | |
| | | package com.ruoyi.integration.drainage.model; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | |
| | | * 设备编码 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("EquipmentID") |
| | | private String equipmentID; |
| | | /** |
| | | * 充电设备接口累计电量 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("EquipmentElectricity") |
| | | private BigDecimal equipmentElectricity; |
| | | /** |
| | | * 设备分类 1:车辆充电设备 |
| | | * 2:换电站内的电池 |
| | | * 箱充电设备 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("EquipmentClassification") |
| | | private Integer equipmentClassification; |
| | | /** |
| | | * 充电设备累计充电时长 单位分钟 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("EquipmentTotalChargeTime") |
| | | private Long equipmentTotalChargeTime; |
| | | /** |
| | | * 充电设备累计充 |
| | | * 电次数 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("EquipmentTotalChargeNum") |
| | | private Integer equipmentTotalChargeNum; |
| | | /** |
| | | * 充电设备累计充 |
| | | * 电次数 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("EquipmentTotalWarningNum") |
| | | private Integer equipmentTotalWarningNum; |
| | | |
| | | /** |
| | | * 充电设备接口统计信息列表 |
| | | */ |
| | | @NotNull |
| | | @JsonProperty("ConnectorStatsInfos") |
| | | private List<ConnectorStatsInfo> connectorStatsInfos; |
| | | } |