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

This commit is contained in:
疯狂的狮子li
2021-05-30 02:24:10 +08:00
parent 456f31901c
commit a3a682eeb1
12 changed files with 972 additions and 0 deletions

View File

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