zss
2023-07-26 f330903e12d38af89d61f16c96856924d241a0f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.yuanchu.limslaboratory.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yuanchu.limslaboratory.pojo.InspectionRecords;
import com.yuanchu.limslaboratory.pojo.dto.InspectionRecordsDto;
import org.apache.ibatis.annotations.Param;
 
import java.util.Map;
 
 
/**
 * 检测记录(InspectionRecords)表数据库访问层
 *
 * @author zss
 * @since 2023-07-24 14:05:11
 */
public interface InspectionRecordsMapper extends BaseMapper<InspectionRecords> {
 
    //根据样品编号id以及状态(待提交)查询检测记录
    InspectionRecordsDto selectByProductId(Integer productId,Integer submitState);
}