2
0

fix(user-platform): 部门列表查询异常

This commit is contained in:
TsMask
2024-12-02 20:06:00 +08:00
parent 1f4fffe8b2
commit d62e51bdd9

View File

@@ -56,7 +56,7 @@ public class UDeptServiceImpl implements IUDeptService
@Override
public List<TreeSelect> selectDeptTreeList(UDept dept)
{
List<UDept> depts = SpringUtils.getAopProxy(this).selectDeptList(dept);
List<UDept> depts = deptMapper.selectDeptList(dept);
return buildDeptTreeSelect(depts);
}