报告 Bean 验证约束注解中 max 和 min 值的错误值。
max
min
示例:
public class Car { @NotNull @Size(min = 14, max = 2) // 'max' 值小于 'min' 值 private String licensePlate; }