add 增加demo模块 树表演示案例(包含数据权限)

This commit is contained in:
疯狂的狮子li
2021-05-30 02:25:14 +08:00
parent a3a682eeb1
commit a02aeb468e
12 changed files with 864 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package com.ruoyi.demo.mapper;
import com.ruoyi.demo.domain.TestTree;
import com.ruoyi.common.core.page.BaseMapperPlus;
/**
* 测试树表Mapper接口
*
* @author Lion Li
* @date 2021-05-30
*/
public interface TestTreeMapper extends BaseMapperPlus<TestTree> {
}