zss
2023-08-25 3a4ec5e2eae59901979f4309acb44eebacb75c56
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yuanchu.limslaboratory.service.impl;
 
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.yuanchu.limslaboratory.mapper.InspectionProductMapper;
import com.yuanchu.limslaboratory.pojo.InspectionProduct;
import com.yuanchu.limslaboratory.service.InspectionProductService;
import org.springframework.stereotype.Service;
 
 
 
/**
 * 申请单下物料中的项目(InspectionProduct)表服务实现类
 *
 * @author zss
 * @since 2023-08-03 13:04:54
 */
@Service
public class InspectionProductServiceImpl extends ServiceImpl<InspectionProductMapper, InspectionProduct> implements InspectionProductService {
 
 
}