XiaoRuby
2023-08-23 924d018e6e6f15effbd272cead5dff67cd3b93a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yuanchu.limslaboratory.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yuanchu.limslaboratory.pojo.InspectionMaterial;
 
/**
 * (样品)检验单里面的物料(InspectionMaterial)表数据库访问层
 *
 * @author zss
 * @since 2023-08-03 13:04:28
 */
public interface InspectionMaterialMapper extends BaseMapper<InspectionMaterial> {
 
}