fix(ruoyi-system):修复修改部门层级BUG

Closes https://gitee.com/y_project/RuoYi/issues/IW1SB
This commit is contained in:
zbz
2019-05-08 17:09:59 +08:00
parent b8d1b54e22
commit 962ab735b5
3 changed files with 31 additions and 17 deletions

View File

@ -98,4 +98,11 @@ public interface SysDeptMapper
* @param dept 部门
*/
public void updateDeptStatus(SysDept dept);
/**
* 根据ID查询所有子部门
* @param id
* @return
*/
public List<SysDept> selectChildrenDeptById(Long id);
}