update
This commit is contained in:
@@ -26,7 +26,7 @@ public interface EmpUserService extends CrudServiceApi<EmpUser> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 添加数据权限过滤条件
|
* 添加数据权限过滤条件
|
||||||
* @param entity 控制对象
|
* @param empUser 控制对象
|
||||||
* @param ctrlPermi 控制权限类型(拥有的数据权限:DataScope.CTRL_PERMI_HAVE、可管理的数据权限:DataScope.CTRL_PERMI_HAVE)
|
* @param ctrlPermi 控制权限类型(拥有的数据权限:DataScope.CTRL_PERMI_HAVE、可管理的数据权限:DataScope.CTRL_PERMI_HAVE)
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -104,7 +104,7 @@ public class ${ClassName}Service extends ${table.isTreeEntity?'Tree':'Crud'}Serv
|
|||||||
/**
|
/**
|
||||||
* 查询子表分页数据
|
* 查询子表分页数据
|
||||||
* @param ${@StringUtils.uncap(child.className)}
|
* @param ${@StringUtils.uncap(child.className)}
|
||||||
* @param ${@StringUtils.uncap(child.className)}.page 分页对象
|
* @param ${@StringUtils.uncap(child.className)} page 分页对象
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public Page<${@StringUtils.cap(child.className)}> findSubPage(${@StringUtils.cap(child.className)} ${@StringUtils.uncap(child.className)}) {
|
public Page<${@StringUtils.cap(child.className)}> findSubPage(${@StringUtils.cap(child.className)} ${@StringUtils.uncap(child.className)}) {
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ public class ${ClassName}Service extends ${table.isTreeEntity?'Tree':'Crud'}Serv
|
|||||||
/**
|
/**
|
||||||
* 查询子表分页数据
|
* 查询子表分页数据
|
||||||
* @param ${@StringUtils.uncap(child.className)}
|
* @param ${@StringUtils.uncap(child.className)}
|
||||||
* @param ${@StringUtils.uncap(child.className)}.page 分页对象
|
* @param ${@StringUtils.uncap(child.className)} page 分页对象
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public Page<${@StringUtils.cap(child.className)}> findSubPage(${@StringUtils.cap(child.className)} ${@StringUtils.uncap(child.className)}) {
|
public Page<${@StringUtils.cap(child.className)}> findSubPage(${@StringUtils.cap(child.className)} ${@StringUtils.uncap(child.className)}) {
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ public class ${ClassName}Service extends ${table.isTreeEntity?'Tree':'Query'}Ser
|
|||||||
/**
|
/**
|
||||||
* 查询子表分页数据
|
* 查询子表分页数据
|
||||||
* @param ${@StringUtils.uncap(child.className)}
|
* @param ${@StringUtils.uncap(child.className)}
|
||||||
* @param ${@StringUtils.uncap(child.className)}.page 分页对象
|
* @param ${@StringUtils.uncap(child.className)} page 分页对象
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public Page<${@StringUtils.cap(child.className)}> findSubPage(${@StringUtils.cap(child.className)} ${@StringUtils.uncap(child.className)}) {
|
public Page<${@StringUtils.cap(child.className)}> findSubPage(${@StringUtils.cap(child.className)} ${@StringUtils.uncap(child.className)}) {
|
||||||
|
|||||||
@@ -49,8 +49,8 @@ public class TestDataService extends CrudService<TestDataDao, TestData> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询分页数据
|
* 查询分页数据
|
||||||
* @param page 分页对象
|
* @param testData page 分页对象
|
||||||
* @param testData
|
* @param testData 查询条件
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
@@ -70,8 +70,8 @@ public class TestDataService extends CrudService<TestDataDao, TestData> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询子表分页数据
|
* 查询子表分页数据
|
||||||
* @param page 分页对象
|
* @param testData 查询条件
|
||||||
* @param testData
|
* @param testData page 分页对象
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<TestDataChild> findSubList(TestDataChild testData) {
|
public List<TestDataChild> findSubList(TestDataChild testData) {
|
||||||
|
|||||||
@@ -49,8 +49,8 @@ public class TestDataService extends CrudService<TestDataDao, TestData> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询分页数据
|
* 查询分页数据
|
||||||
* @param page 分页对象
|
* @param testData 查询条件
|
||||||
* @param testData
|
* @param testData page 分页对象
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -76,8 +76,8 @@ public class TestDataService extends CrudService<TestDataDao, TestData> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询子表分页数据
|
* 查询子表分页数据
|
||||||
* @param page 分页对象
|
* @param testData 查询条件
|
||||||
* @param testData
|
* @param testData page 分页对象
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public List<TestDataChild> findSubList(TestDataChild testData) {
|
public List<TestDataChild> findSubList(TestDataChild testData) {
|
||||||
|
|||||||
Reference in New Issue
Block a user