自定义数据权限不排除重复
parent
c98f452431
commit
d4930f6a88
|
@ -7,7 +7,6 @@ package com.ruoyi.common.core.exception;
|
|||
*/
|
||||
public class GlobalException extends RuntimeException
|
||||
{
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
|
@ -45,6 +44,7 @@ public class GlobalException extends RuntimeException
|
|||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMessage()
|
||||
{
|
||||
return message;
|
||||
|
|
|
@ -49,6 +49,7 @@ public final class ServiceException extends RuntimeException
|
|||
return detailMessage;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMessage()
|
||||
{
|
||||
return message;
|
||||
|
|
|
@ -92,7 +92,7 @@ public class DataScopeAspect
|
|||
for (SysRole role : user.getRoles())
|
||||
{
|
||||
String dataScope = role.getDataScope();
|
||||
if (conditions.contains(dataScope))
|
||||
if (!DATA_SCOPE_CUSTOM.equals(dataScope) && conditions.contains(dataScope))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue