1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.chinaztt.mes.outsource.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.chinaztt.mes.outsource.entity.InspectionDeclaration;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * @Author: Zero
| * @Date: 2022/9/28 15:00
| * @Description:
| */
| @Mapper
| public interface InspectionDeclarationMapper extends BaseMapper<InspectionDeclaration> {
| }
|
|