zss
2023-08-19 6d7b4c2e4c0a1dd15afb71b11c8f3c19ef7c946c
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> {
 
}