疯狂的狮子li
2021-07-06 80e74eb91c08fc1d774d1274323546d5ce592455
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package ${packageName}.mapper;
 
import ${packageName}.domain.${ClassName};
import com.ruoyi.common.core.mybatisplus.core.BaseMapperPlus;
import com.ruoyi.common.core.mybatisplus.cache.MybatisPlusRedisCache;
import org.apache.ibatis.annotations.CacheNamespace;
 
/**
 * ${functionName}Mapper接口
 *
 * @author ${author}
 * @date ${datetime}
 */
public interface ${ClassName}Mapper extends BaseMapperPlus<${ClassName}> {
 
}