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
36
37
38
39
package com.ruoyi.report.service;
 
import com.ruoyi.report.dto.SpcChartDto;
import com.ruoyi.report.vo.SpcResultVo;
 
import javax.servlet.http.HttpServletResponse;
import java.util.List;
 
/**
 * SPC控制图服务接口
 */
public interface SpcChartService {
 
    /**
     * SPC分析
     */
    SpcResultVo analyze(SpcChartDto dto);
 
    /**
     * 制程能力分析
     */
    SpcResultVo.Capability getCapability(SpcChartDto dto);
 
    /**
     * 导出分析数据
     */
    void export(SpcChartDto dto, HttpServletResponse response);
 
    /**
     * 查询可选检测项
     */
    List<String> getItemNames(SpcChartDto dto);
 
    /**
     * 查询可选样品名称列表
     */
    List<String> getSampleNames(SpcChartDto dto);
 
}