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.InspectionProduct;
|
| /**
| * 申请单下物料中的项目(InspectionProduct)表数据库访问层
| *
| * @author zss
| * @since 2023-08-03 13:04:54
| */
| public interface InspectionProductMapper extends BaseMapper<InspectionProduct> {
|
| }
|
|