package com.ruoyi.quality.mapper;
|
|
import com.ruoyi.quality.pojo.QualityTestStandardParam;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* <p>
|
* 检测标准参数 Mapper 接口
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-01-13 03:39:49
|
*/
|
@Mapper
|
public interface QualityTestStandardParamMapper extends BaseMapper<QualityTestStandardParam> {
|
|
List<QualityTestStandardParam> selectListByProductId(@Param("productId") Long productId);
|
}
|