fix(admin): 修复管理员用户服务中的返回值问题
- 在AdminUserServiceImpl中添加缺失的return语句 - 确保方法正确返回userVOS列表 - 解决了树形结构绑定功能的逻辑错误
This commit is contained in:
parent
fbea0c26a6
commit
591d9cd518
|
|
@ -470,6 +470,7 @@ public class AdminUserServiceImpl extends ServiceImpl<AdminUserMapper, AdminUser
|
||||||
// List<AdminUserVO>
|
// List<AdminUserVO>
|
||||||
// rootDepartments.forEach(d -> getChildren1(d, departmentVOS, adminUsers, positions, roleMaps, roles));
|
// rootDepartments.forEach(d -> getChildren1(d, departmentVOS, adminUsers, positions, roleMaps, roles));
|
||||||
//TODO 绑定树形结构
|
//TODO 绑定树形结构
|
||||||
|
return userVOS;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue