You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
489 B
18 lines
489 B
package com.ruoyi.demo.mapper;
|
|
|
|
import com.ruoyi.common.core.mybatisplus.MybatisPlusRedisCache;
|
|
import com.ruoyi.common.core.page.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> {
|
|
|
|
}
|