优化功能模块的接口
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user