疯狂的狮子li
2021-06-18 3cc028fa2909e691a77e6ff99fd57a69829ccb4b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.demo.mapper;
 
import com.ruoyi.common.core.mybatisplus.cache.MybatisPlusRedisCache;
import com.ruoyi.common.core.mybatisplus.core.BaseMapperPlus;
import com.ruoyi.demo.domain.TestTree;
import org.apache.ibatis.annotations.CacheNamespace;
 
/**
 * 测试树表Mapper接口
 *
 * @author Lion Li
 * @date 2021-05-30
 */
@CacheNamespace(implementation = MybatisPlusRedisCache.class, eviction = MybatisPlusRedisCache.class)
public interface TestTreeMapper extends BaseMapperPlus<TestTree> {
 
}