添加订单统计方法

This commit is contained in:
2025-08-11 07:54:06 +08:00
parent 00fbeedc56
commit aaf0eed197
6 changed files with 127 additions and 1 deletions

View File

@@ -106,4 +106,11 @@ public interface StatisticsMapper {
List<HashMap<String, String>> scanCodeMemberChartByHour(CommonQueryReq query);
List<HashMap<String, String>> scanCodeMemberChartByDate(CommonQueryReq query);
/**
* 统计订单数量和金额(包含推送订单和现场订单)
* @param query
* @return
*/
com.ycwl.basic.model.pc.statistics.resp.OrderStatisticsResp getOrderStatistics(CommonQueryReq query);
}