查询时间段内订单总金额和总用电量V2

This commit is contained in:
2023-08-11 15:59:26 +08:00
parent de21084aec
commit 70dff61eef
10 changed files with 74 additions and 49 deletions

View File

@@ -135,8 +135,6 @@ public interface PileBasicInfoMapper {
* @param dto 站点Id
* @return 首页基本信息
*/
public IndexGeneralSituationVO getGeneralSituation(@Param("IndexQueryDTO")IndexQueryDTO dto);
public IndexGeneralSituationVO getGeneralSituationInfo(@Param("IndexQueryDTO")IndexQueryDTO dto);
/**

View File

@@ -137,4 +137,14 @@ public interface SettleOrderReportMapper {
* @param date 交易日期
*/
List<SettleOrderReport> selectByMerchantIdAndDate(@Param("merchantId") String merchantId, @Param("date") String date);
/**
* 通过站点idList 日期范围查询订单日报列表
*
* @param stationIdList 站点idList
* @param startDate 开始时间
* @param endDate 结束时间
* @return
*/
List<SettleOrderReport> queryOrderReport(@Param("stationIdList") List<String> stationIdList, @Param("startDate") String startDate, @Param("endDate") String endDate);
}