update 首页数据大屏

This commit is contained in:
Lemon
2026-05-25 14:35:00 +08:00
parent a3fdff2a63
commit 19710e588e
14 changed files with 313 additions and 0 deletions

View File

@@ -38,4 +38,68 @@ public class BigDataOverviewVO {
* 充电站数量
*/
private Long totalStations;
/**
* 日增用户数
*/
private Long dailyNewUsers;
/**
* 当日累计交易金额(元)
*/
private String todayTransactionAmount;
/**
* 今日充电电量kWh
*/
private String todayElectricity;
/**
* 月均充电电量kWh
*/
private String monthlyAvgElectricity;
/**
* 充电枪总数
*/
private Long totalGuns;
/**
* 在线充电桩数量
*/
private Long onlinePiles;
/**
* 直流充电桩数量
*/
private Long onlineStations;
/**
* 交流充电桩数量
*/
private Long onlineGuns;
/**
* 累计碳减排量(吨)
* = 累计充电量(kWh) × 0.5306 / 1000
*/
private String carbonReduction;
/**
* 单次充电平均减碳量kg
* = 累计碳减排量(kg) / 总订单数
*/
private String avgCarbonPerOrder;
/**
* 节约燃油(升)
* = 累计充电量(kWh) × 8 / 15
*/
private String fuelSaved;
/**
* 相当于替代标准煤(吨)
* = 累计充电量(kWh) × 0.000404
*/
private String standardCoalSaved;
}