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
30
31
32
33
34
35
package com.ruoyi.report.service;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ruoyi.report.dto.SampleProgressDto;
import com.ruoyi.report.vo.SampleProgressVo;
 
import javax.servlet.http.HttpServletResponse;
import java.util.Map;
 
/**
 * 样品进度报表服务接口
 */
public interface SampleProgressService {
 
    /**
     * 分页查询样品进度
     */
    Page<SampleProgressVo> pageSampleProgress(Page page, SampleProgressDto dto);
 
    /**
     * 获取统计数据
     */
    Map<String, Object> getStatistics(SampleProgressDto dto);
 
    /**
     * 导出报表
     */
    void exportSampleProgress(SampleProgressDto dto, HttpServletResponse response);
 
    /**
     * 获取图表数据
     */
    Map<String, Object> getChartData(SampleProgressDto dto);
 
}