李林
2024-03-08 f7a95fddddb0efd60abdab7550ae636c379a2a20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.yuanchu.mom.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.yuanchu.mom.pojo.InsProduct;
import com.yuanchu.mom.service.InsProductService;
import com.yuanchu.mom.mapper.InsProductMapper;
import org.springframework.stereotype.Service;
 
/**
* @author Administrator
* @description 针对表【ins_product(检验项目)】的数据库操作Service实现
* @createDate 2024-03-08 09:45:03
*/
@Service
public class InsProductServiceImpl extends ServiceImpl<InsProductMapper, InsProduct>
    implements InsProductService{
 
}