|
|
@@ -1,5 +1,6 @@
|
|
|
package com.kym.entity.enplus;
|
|
|
|
|
|
+import com.alibaba.fastjson2.annotation.JSONField;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
@@ -11,27 +12,32 @@ import java.util.List;
|
|
|
* @date 2023-07-31 16:02
|
|
|
*/
|
|
|
@Data
|
|
|
-public class StationStatsInfo {
|
|
|
+public class EnStationStatsInfo {
|
|
|
/**
|
|
|
* 充电站ID
|
|
|
*/
|
|
|
- private String StationID;
|
|
|
+ @JSONField(name = "StationID")
|
|
|
+ private String stationId;
|
|
|
/**
|
|
|
* 统计开始时间(yyyy-MM-dd)
|
|
|
*/
|
|
|
- private String StartTime;
|
|
|
+ @JSONField(name = "StartTime")
|
|
|
+ private String startTime;
|
|
|
/**
|
|
|
* 统计结束时间(yyyy-MM-dd)
|
|
|
*/
|
|
|
- private String EndTime;
|
|
|
+ @JSONField(name = "EndTime")
|
|
|
+ private String endTime;
|
|
|
/**
|
|
|
* 充电站累积电量(kWh,精度0.1)
|
|
|
*/
|
|
|
+ @JSONField(name = "StationElectricity")
|
|
|
private BigDecimal StationElectricity;
|
|
|
|
|
|
/**
|
|
|
* 充电设备统计信息列表
|
|
|
*/
|
|
|
- private List<EnEquipmentStatsInfo> EquipmentStatsInfos;
|
|
|
+ @JSONField(name = "EquipmentStatsInfos")
|
|
|
+ private List<EnEquipmentStatsInfo> equipmentStatsInfos;
|
|
|
|
|
|
}
|