mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 05:25:12 +08:00
查询时间段内订单总金额和总用电量V2
This commit is contained in:
@@ -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);
|
||||
|
||||
/**
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user