zss
2024-12-30 97bb7a8832281eafe0ef947ea095258d355e52f5
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.InsProductUser;
import com.yuanchu.mom.service.InsProductUserService;
import com.yuanchu.mom.mapper.InsProductUserMapper;
import org.springframework.stereotype.Service;
 
/**
* @author z1292
* @description 针对表【ins_product_user(检验项目的人员检验记录)】的数据库操作Service实现
* @createDate 2024-04-17 13:42:44
*/
@Service
public class InsProductUserServiceImpl extends ServiceImpl<InsProductUserMapper, InsProductUser>
    implements InsProductUserService{
 
}