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> getItemData(@Param("dto") SpcChartDto dto); /** * 查询可选检测项 */ List getItemNames(@Param("dto") SpcChartDto dto); /** * 查询可选样品名称列表 */ List getSampleNames(@Param("dto") SpcChartDto dto); }