mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-08-18 12:07:33 +08:00
update 首页数据大屏
This commit is contained in:
@@ -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_id,Java汇总返回
|
||||
*/
|
||||
IndexGeneralSituationVO aggregateReportByMerchantIds(List<String> merchantIdList);
|
||||
|
||||
/**
|
||||
* 大数据平台专用:根据站点ID查settle_order_report GROUP BY station_id,Java汇总返回
|
||||
*/
|
||||
IndexGeneralSituationVO aggregateReportByStationIds(List<String> stationIdList);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user