1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ruoyi.inspect.mapper;
|
| import com.ruoyi.inspect.pojo.InsProductDeviationWarningDetail;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * <p>
| * 检验项偏差预警详情表 Mapper 接口
| * </p>
| *
| * @author 芯导软件(江苏)有限公司
| * @since 2025-03-28 02:18:58
| */
| public interface InsProductDeviationWarningDetailMapper extends BaseMapper<InsProductDeviationWarningDetail> {
|
| }
|
|