查询角色下的人+ID

This commit is contained in:
ys.git 2025-12-23 16:16:19 +08:00
parent ff6a646058
commit d2636cdda2

View File

@ -213,7 +213,7 @@ public class ModelRoleServiceImpl implements ModelRoleService {
menuParamView.setId(menuParameter.getId());
// menuParamView.setMenuPath(modelMenuDictionaryPojo.getMenuDesc());
menuParamView.setSubsystem(menuParameter.getSubsystem());
menuParamView.setSubsystem(menuParameter.getPartsName());
menuParamView.setPartsName(menuParameter.getPartsName());
menuParamView.setParameterPer(byCode.getDesc());
menuParamViews.add(menuParamView);
}
@ -292,7 +292,7 @@ public class ModelRoleServiceImpl implements ModelRoleService {
if (ObjectUtils.isEmpty(xdapDepartments)) {
stringsDept.add("未知部门:" + depId);
} else {
stringsDept.add(xdapDepartments.getName());
stringsDept.add(xdapDepartments.getName()+"-ID:"+depId);
}
}
map.put("部门", stringsDept);
@ -302,7 +302,7 @@ public class ModelRoleServiceImpl implements ModelRoleService {
if (ObjectUtils.isEmpty(xdapUsers)) {
stringsUser.add("未知人员:" + userId);
} else {
stringsUser.add(xdapUsers.getUsername() + "-" + xdapUsers.getAccount());
stringsUser.add(xdapUsers.getUsername() + "-ID:" + userId);
}
}
map.put("人员", stringsUser);