feat:格式化代码

This commit is contained in:
wangyu 2021-09-26 17:03:36 +08:00
parent 2597252b81
commit a5ecb363bb
1 changed files with 3 additions and 3 deletions

View File

@ -29,13 +29,13 @@ public class BeanValidation {
private String pattern;
// 验证长度
private int len;
private Integer len;
// 验证最小长度
private int min;
private Integer min;
// 验证最大长度
private int max;
private Integer max;
// 内建的验证器
private String validator;