update 首页数据大屏

This commit is contained in:
Lemon
2026-05-26 16:19:19 +08:00
parent 52b1535216
commit 05699d5686
15 changed files with 483 additions and 106 deletions

View File

@@ -260,23 +260,29 @@ public interface PileBasicInfoService {
int movePile2AnotherStation(ReplaceMerchantStationDTO dto);
/**
* 查询当日累计交易金额
*
* @return 当日交易金额
*/
java.math.BigDecimal getTodayTransactionAmount();
/**
* 查询当日充电电量
*
* @return 当日充电电量
*/
java.math.BigDecimal getTodayElectricity();
/**
* 查询本月日均充电电量
* 查询本月日均充电电量,日期由代码传入
*
* @return 月均充电电量
*/
java.math.BigDecimal getMonthlyAvgElectricity();
java.math.BigDecimal getMonthlyAvgElectricity(String monthStartDate, String monthEndDate);
/**
* 根据站点ID列表统计充电桩总数
*/
Long countTotalPilesByStationIds(List<String> stationIdList);
/**
* 根据商户ID列表统计充电桩总数
*/
Long countTotalPilesByMerchantIds(List<String> merchantIdList);
/**
* 大数据平台专用根据商户ID查settle_order_report GROUP BY merchant_idJava汇总返回
*/
IndexGeneralSituationVO aggregateReportByMerchantIds(List<String> merchantIdList);
/**
* 大数据平台专用根据站点ID查settle_order_report GROUP BY station_idJava汇总返回
*/
IndexGeneralSituationVO aggregateReportByStationIds(List<String> stationIdList);
}