发布 v2.3.0

This commit is contained in:
疯狂的狮子li
2021-06-01 10:33:57 +08:00
parent fcfc5c85c7
commit c90ca8c2a6
74 changed files with 3801 additions and 431 deletions

View File

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

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> {
}

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> {
}