package com.ruoyi.report.mapper; import com.ruoyi.report.dto.NormalDistributionDto; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; /** * 正态分布图Mapper */ @Mapper public interface NormalDistributionMapper { /** * 查询检测项数据 */ List> getItemData(@Param("dto") NormalDistributionDto dto); /** * 查询可选检测项 */ List getItemNames(@Param("dto") NormalDistributionDto dto); /** * 查询可选样品名称列表 */ List getSampleNames(@Param("dto") NormalDistributionDto dto); }