zss
2023-08-28 f32e75ed3d34f31da74c0199d53139268e9cd560
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> {
 
}