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> {
|
| }
|
|