|
@@ -18,18 +18,17 @@ public class UserProfileUpdateReqVO {
|
|
|
private String nickname;
|
|
|
|
|
|
@Schema(description = "用户邮箱", example = "yudao@iocoder.cn")
|
|
|
- @Email(message = "邮箱格式不正确")
|
|
|
- @Size(max = 50, message = "邮箱长度不能超过 50 个字符")
|
|
|
+// @Email(message = "邮箱格式不正确")
|
|
|
+// @Size(max = 50, message = "邮箱长度不能超过 50 个字符")
|
|
|
private String email;
|
|
|
|
|
|
@Schema(description = "手机号码", example = "15601691300")
|
|
|
- @Length(min = 11, max = 11, message = "手机号长度必须 11 位")
|
|
|
+// @Length(min = 11, max = 11, message = "手机号长度必须 11 位")
|
|
|
private String mobile;
|
|
|
|
|
|
@Schema(description = "用户性别,参见 SexEnum 枚举类", example = "1")
|
|
|
private Integer sex;
|
|
|
|
|
|
-
|
|
|
//新加的
|
|
|
@Schema(description = "简介")
|
|
|
private String remark;
|