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
package com.ruoyi.report.service;
 
import com.ruoyi.report.dto.NormalDistributionDto;
import com.ruoyi.report.vo.NormalDistributionVo;
 
import javax.servlet.http.HttpServletResponse;
import java.util.List;
 
/**
 * 正态分布图服务接口
 */
public interface NormalDistributionService {
 
    /**
     * 正态分布分析
     */
    NormalDistributionVo analyze(NormalDistributionDto dto);
 
    /**
     * 导出分析数据
     */
    void export(NormalDistributionDto dto, HttpServletResponse response);
 
    /**
     * 查询可选检测项
     */
    List<String> getItemNames(NormalDistributionDto dto);
 
    /**
     * 查询可选样品名称列表
     */
    List<String> getSampleNames(NormalDistributionDto dto);
 
}