zhuo
2025-04-01 cb3ec598dc18e66b70a2cc9f7181c8be5bcf6e57
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.inspect.service.impl;
 
import com.ruoyi.inspect.pojo.InsProductDeviationWarningDetail;
import com.ruoyi.inspect.mapper.InsProductDeviationWarningDetailMapper;
import com.ruoyi.inspect.service.InsProductDeviationWarningDetailService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 检验项偏差预警详情表 服务实现类
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2025-03-28 02:18:58
 */
@Service
public class InsProductDeviationWarningDetailServiceImpl extends ServiceImpl<InsProductDeviationWarningDetailMapper, InsProductDeviationWarningDetail> implements InsProductDeviationWarningDetailService {
 
}