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