add 每日新增用户和每日新增支付金额图表

This commit is contained in:
王鹏
2025-10-31 09:44:37 +08:00
parent 4d2d38aadd
commit da05a94acb
12 changed files with 251 additions and 12 deletions

View File

@@ -1,6 +1,8 @@
package com.ruoyi.app.service;
import java.util.List;
import java.util.Map;
import com.ruoyi.app.domain.AppPayOrder;
/**
@@ -58,4 +60,12 @@ public interface IAppPayOrderService
* @return 结果
*/
public int deleteAppPayOrderById(Long id);
/**
* 查询每日新增支付金额统计
*
* @param days 天数
* @return 统计结果
*/
public List<Map<String, Object>> selectDailyPayAmount(Integer days);
}