package com.ruoyi.report.mapper;
|
|
import com.ruoyi.report.dto.SpcChartDto;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* SPC控制图Mapper
|
*/
|
@Mapper
|
public interface SpcChartMapper {
|
|
/**
|
* 查询检测项数据
|
*/
|
List<Map<String, Object>> getItemData(@Param("dto") SpcChartDto dto);
|
|
/**
|
* 查询可选检测项
|
*/
|
List<String> getItemNames(@Param("dto") SpcChartDto dto);
|
|
/**
|
* 查询可选样品名称列表
|
*/
|
List<String> getSampleNames(@Param("dto") SpcChartDto dto);
|
|
}
|