修复#6169

pull/6220/head
EightMonth 2024-04-30 13:49:34 +08:00
parent faebdee755
commit ad3d2eb3fc
1 changed files with 3 additions and 0 deletions

View File

@ -158,6 +158,9 @@ public class AutoLogAspect {
if(value!=null && value.toString().length()>length){
return false;
}
if(value instanceof MultipartFile){
return false;
}
return true;
}
};