Commit 8495f78e by qwmqiuwenmin

fix

parent 365bbe9a
......@@ -320,6 +320,9 @@ public class DepartmentContoller extends WebBaseController{
handerSonDepartment(departmentQO.getCurrDepartment());
HaobanResponse hr = departmentApiService.edit(department);
String sonDepartment = editDepartment.getChildren();
handler(sonDepartment,department.getDepartmentId());
}
}
......
......@@ -16,6 +16,8 @@ public class DepartmentEditQO implements Serializable{
private String parentDepartmentId;
private String children;
public String getDepartmentId() {
return departmentId;
}
......@@ -64,6 +66,14 @@ public class DepartmentEditQO implements Serializable{
this.parentDepartmentId = parentDepartmentId;
}
public String getChildren() {
return children;
}
public void setChildren(String children) {
this.children = children;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment