1b3704df by chentao

no message

1 parent 2282c555
......@@ -32,6 +32,7 @@ public class AtLeastOneNonNullValidator implements ConstraintValidator<AtLeastOn
field.setAccessible(true); // 设置私有字段可访问,以便读取值
System.out.println(field.getName()+"============"+field.get(object)+"!");
if (Objects.nonNull(field.get(object))) { // 检查字段是否非空
System.out.println(field.getName()+"============"+field.get(object)+"&");
return true; // 如果至少一个字段非空,返回true
}
} catch (NoSuchFieldException | IllegalAccessException e) {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!