支持多权限字符匹配角色数据权限

This commit is contained in:
RuoYi
2022-08-22 12:03:51 +08:00
parent aadb7a41cb
commit 27e0937235
4 changed files with 31 additions and 2 deletions

View File

@ -27,7 +27,7 @@ public @interface DataScope
public String userAlias() default "";
/**
* 权限字符(如不填默认会自动根据注解获取)
* 权限字符(用于多个角色匹配符合要求的权限)默认根据权限注解@ss获取多个权限用逗号分隔开来
*/
public String permission() default "";
}

View File

@ -324,6 +324,32 @@ public class StringUtils extends org.apache.commons.lang3.StringUtils
return list;
}
/**
* 判断给定的set列表中是否包含数组array 判断给定的数组array中是否包含给定的元素value
*
* @param set 给定的集合
* @param array 给定的数组
* @return boolean 结果
*/
public static boolean containsAny(Collection<String> collection, String... array)
{
if (isEmpty(collection) || isEmpty(array))
{
return false;
}
else
{
for (String str : array)
{
if (collection.contains(str))
{
return true;
}
}
return false;
}
}
/**
* 查找指定字符串是否包含指定字符串列表中的任意一个字符串同时串忽略大小写
*