优化功能模块的接口

This commit is contained in:
季圣华
2022-07-28 23:54:14 +08:00
parent 1fce7eeb79
commit 0fd608fd98
5 changed files with 68 additions and 17 deletions

View File

@@ -0,0 +1,14 @@
package com.jsh.erp.datasource.entities;
public class FunctionEx extends Function {
private String parentName;
public String getParentName() {
return parentName;
}
public void setParentName(String parentName) {
this.parentName = parentName;
}
}

View File

@@ -1,6 +1,6 @@
package com.jsh.erp.datasource.mappers;
import com.jsh.erp.datasource.entities.Function;
import com.jsh.erp.datasource.entities.FunctionEx;
import org.apache.ibatis.annotations.Param;
import java.util.Date;
@@ -8,7 +8,7 @@ import java.util.List;
public interface FunctionMapperEx {
List<Function> selectByConditionFunction(
List<FunctionEx> selectByConditionFunction(
@Param("name") String name,
@Param("type") String type,
@Param("offset") Integer offset,