Commit c15c276c by guojuxing

协作人详情修复:权限集数据错误

parent becae978
...@@ -138,7 +138,7 @@ public class CollaboratorApiServiceImpl implements CollaboratorApiService { ...@@ -138,7 +138,7 @@ public class CollaboratorApiServiceImpl implements CollaboratorApiService {
if (CollectionUtils.isNotEmpty(menuList)) { if (CollectionUtils.isNotEmpty(menuList)) {
List<Integer> menuIdList = new ArrayList<>(menuList.size()); List<Integer> menuIdList = new ArrayList<>(menuList.size());
for (TabSysCollaboratorRoleRel menu : menuList) { for (TabSysCollaboratorRoleRel menu : menuList) {
menuIdList.add(menu.getCollaboratorId()); menuIdList.add(menu.getMenuId());
} }
result.setMenuIdList(menuIdList); result.setMenuIdList(menuIdList);
} }
......
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