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());
}
}
......
......@@ -15,6 +15,8 @@ public class DepartmentEditQO implements Serializable{
private Integer sort;
private String parentDepartmentId;
private String children;
public String getDepartmentId() {
return departmentId;
......@@ -63,6 +65,14 @@ public class DepartmentEditQO implements Serializable{
public void setParentDepartmentId(String parentDepartmentId) {
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