录音时长统计相关代码

This commit is contained in:
2026-02-07 21:10:44 +08:00
parent ec16419f1f
commit 69043e765a
5 changed files with 184 additions and 14 deletions

View File

@@ -55,6 +55,16 @@ public interface IAudioManagementStatisticsService extends IService<AudioManagem
*/
List<AudioManagementStatistics> getStatisticsBySales(String salesId, LocalDate startDate, LocalDate endDate);
/**
* 查询指定销售人员的统计数据支持根据ID或电话号码查询
* @param salesId 销售人员ID可选
* @param salesPhone 销售人员电话号码(可选)
* @param startDate 开始日期
* @param endDate 结束日期
* @return 统计记录列表
*/
List<AudioManagementStatistics> getStatisticsBySales(String salesId, String salesPhone, LocalDate startDate, LocalDate endDate);
/**
* 查询指定项目的统计数据
* @param projectId 项目ID