|
|
@ -2,6 +2,7 @@ package com.glxp.api.service.auth.impl;
|
|
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
import com.github.pagehelper.PageHelper;
|
|
|
|
import com.glxp.api.constant.Constant;
|
|
|
|
import com.glxp.api.constant.Constant;
|
|
|
|
import com.glxp.api.dao.auth.SysRoleMapper;
|
|
|
|
import com.glxp.api.dao.auth.SysRoleMapper;
|
|
|
@ -137,6 +138,11 @@ public class SysRoleServiceImpl implements ISysRoleService {
|
|
|
|
filterRoleRequest.setNeRoleId(role.getRoleId());
|
|
|
|
filterRoleRequest.setNeRoleId(role.getRoleId());
|
|
|
|
List<SysRole> sysRoles = sysRoleMapper.selectRoleList(filterRoleRequest);
|
|
|
|
List<SysRole> sysRoles = sysRoleMapper.selectRoleList(filterRoleRequest);
|
|
|
|
if (CollUtil.isNotEmpty(sysRoles)) {
|
|
|
|
if (CollUtil.isNotEmpty(sysRoles)) {
|
|
|
|
|
|
|
|
for (SysRole sysRole : sysRoles) {
|
|
|
|
|
|
|
|
if (StrUtil.isNotBlank(sysRole.getRoleName()) && StrUtil.isNotBlank(role.getRoleName()) && !role.getRoleName().equals(sysRole.getRoleName())) {
|
|
|
|
|
|
|
|
return Constant.UNIQUE;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return Constant.NOT_UNIQUE;
|
|
|
|
return Constant.NOT_UNIQUE;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
return Constant.UNIQUE;
|
|
|
|
return Constant.UNIQUE;
|
|
|
|