通用mapper集成 90%
This commit is contained in:
@ -0,0 +1,10 @@
|
||||
package com.ruoyi.common.mybatisMapper;
|
||||
|
||||
|
||||
import tk.mybatis.mapper.common.Mapper;
|
||||
import tk.mybatis.mapper.common.MySqlMapper;
|
||||
|
||||
public interface MyMapper<T> extends Mapper<T>, MySqlMapper<T> {
|
||||
//TODO
|
||||
//FIXME 特别注意,该接口不能被扫描到,否则会出错
|
||||
}
|
Reference in New Issue
Block a user