add 增加增强Mapper 重写业务适配

This commit is contained in:
疯狂的狮子li
2021-05-14 13:01:18 +08:00
parent 51efddcfb0
commit 6067cb1797
22 changed files with 84 additions and 42 deletions

View File

@ -0,0 +1,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> {
}