diff --git a/src/main/java/com/xdap/self_development/service/impl/ModelRoleServiceImpl.java b/src/main/java/com/xdap/self_development/service/impl/ModelRoleServiceImpl.java index 17884ec..98157fc 100644 --- a/src/main/java/com/xdap/self_development/service/impl/ModelRoleServiceImpl.java +++ b/src/main/java/com/xdap/self_development/service/impl/ModelRoleServiceImpl.java @@ -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);