huminmin
2026-06-05 24019a8c1d8e78656e85b29ee7be223e0dd253a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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<Map<String, Object>> getItemData(@Param("dto") NormalDistributionDto dto);
 
    /**
     * 查询可选检测项
     */
    List<String> getItemNames(@Param("dto") NormalDistributionDto dto);
 
    /**
     * 查询可选样品名称列表
     */
    List<String> getSampleNames(@Param("dto") NormalDistributionDto dto);
 
}