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);
|
|
}
|