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.InspectionPurchased;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * <p>
| * 外购件检验 Mapper 接口
| * </p>
| *
| * @author ld
| * @since 2025-03-25 01:58:21
| */
| public interface InspectionPurchasedMapper extends BaseMapper<InspectionPurchased> {
|
| }
|
|