1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.yuanchu.mom.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.yuanchu.mom.pojo.ProcessReport;
|
| /**
| * <p>
| * 检验报告发放登记表 Mapper 接口
| * </p>
| *
| * @author
| * @since 2024-11-05 08:58:39
| */
| public interface ProcessReportMapper1 extends BaseMapper<ProcessReport> {
|
| }
|
|