1
2
3
4
5
6
7
8
9
10
11
12
| package com.ruoyi.common.core.page;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * 自定义 Mapper 接口, 实现 自定义扩展
| *
| * @author Lion Li
| * @since 2021-05-13
| */
| public interface BaseMapperPlus<T> extends BaseMapper<T> {
| }
|
|