package com.chinaztt.mes.technology.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.chinaztt.mes.technology.entity.DocumentStandardParam;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* @Description : 工艺文件检测参数
|
* @interfaceName : DocumentStandardParamMapper
|
* @Author : sll
|
* @Date: 2022-07-01 18:22
|
*/
|
@Mapper
|
public interface DocumentStandardParamMapper extends BaseMapper<DocumentStandardParam>{
|
|
/**
|
* 根据主表id删除明细
|
* @param standardId 检测标准id
|
*/
|
void delDocStandardParamByStandardId(@Param("standardId") Long standardId);
|
|
/**
|
* 根据检测标准id获取检测标准参数列表
|
* @param standardId 检测标准id
|
* @return
|
*/
|
List<DocumentStandardParam> getDocumentStandardParamListByStandardId(@Param("standardId") Long standardId);
|
}
|