2021-05-30 02:25:14 +08:00
|
|
|
package com.ruoyi.demo.mapper;
|
|
|
|
|
2021-06-10 21:18:58 +08:00
|
|
|
import com.ruoyi.common.core.mybatisplus.MybatisPlusRedisCache;
|
2021-05-30 02:25:14 +08:00
|
|
|
import com.ruoyi.common.core.page.BaseMapperPlus;
|
2021-06-10 21:18:58 +08:00
|
|
|
import com.ruoyi.demo.domain.TestTree;
|
|
|
|
import org.apache.ibatis.annotations.CacheNamespace;
|
2021-05-30 02:25:14 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 测试树表Mapper接口
|
|
|
|
*
|
|
|
|
* @author Lion Li
|
|
|
|
* @date 2021-05-30
|
|
|
|
*/
|
2021-06-10 21:18:58 +08:00
|
|
|
@CacheNamespace(implementation = MybatisPlusRedisCache.class, eviction = MybatisPlusRedisCache.class)
|
2021-05-30 02:25:14 +08:00
|
|
|
public interface TestTreeMapper extends BaseMapperPlus<TestTree> {
|
|
|
|
|
|
|
|
}
|