huminmin
2026-06-05 24019a8c1d8e78656e85b29ee7be223e0dd253a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ruoyi.report.service;
 
import com.ruoyi.report.dto.WorkStatisticsDto;
import com.ruoyi.report.vo.WorkStatisticsVo;
 
import java.util.List;
import java.util.Map;
 
/**
 * 工作统计服务接口
 */
public interface WorkStatisticsService {
 
    /**
     * 按人员统计
     */
    List<WorkStatisticsVo> getByUser(WorkStatisticsDto dto);
 
    /**
     * 及时率统计
     */
    List<Map<String, Object>> getTimelyRate(WorkStatisticsDto dto);
 
    /**
     * 工作趋势图
     */
    Map<String, Object> getTrend(WorkStatisticsDto dto);
 
}