package com.chinaztt.mes.technology.mapper;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.chinaztt.mes.technology.entity.DocumentTestStandard;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* @Description : 文艺文件检测标准
|
* @interfaceName : DocumentTestStandardMapper
|
* @Author : sll
|
* @Date: 2022-07-01 18:20
|
*/
|
@Mapper
|
public interface DocumentTestStandardMapper extends BaseMapper<DocumentTestStandard>{
|
DocumentTestStandard getDocumentTestStandardByStandardId(@Param("standardId") Long standardId);
|
|
DocumentTestStandard getTestStandardByStandardNo(String standardNo);
|
}
|