|
|
|
@ -75,7 +75,7 @@ public class MybatisEncryptInterceptor implements Interceptor {
|
|
|
|
|
}
|
|
|
|
|
// 判断第一个元素是否含有注解。如果没有直接返回,提高效率
|
|
|
|
|
Object firstItem = list.get(0);
|
|
|
|
|
if (ObjectUtil.isNull(firstItem) && CollUtil.isEmpty(encryptorManager.getFieldCache(firstItem.getClass()))) {
|
|
|
|
|
if (ObjectUtil.isNull(firstItem) || CollUtil.isEmpty(encryptorManager.getFieldCache(firstItem.getClass()))) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
list.forEach(this::encryptHandler);
|
|
|
|
|