|
@@ -6,13 +6,14 @@ import org.hibernate.validator.constraints.Length;
|
|
|
|
|
|
|
|
import jakarta.validation.constraints.Email;
|
|
import jakarta.validation.constraints.Email;
|
|
|
import jakarta.validation.constraints.Size;
|
|
import jakarta.validation.constraints.Size;
|
|
|
|
|
+import org.hibernate.validator.constraints.URL;
|
|
|
|
|
|
|
|
|
|
|
|
|
@Schema(description = "管理后台 - 用户个人信息更新 Request VO")
|
|
@Schema(description = "管理后台 - 用户个人信息更新 Request VO")
|
|
|
@Data
|
|
@Data
|
|
|
public class UserProfileUpdateReqVO {
|
|
public class UserProfileUpdateReqVO {
|
|
|
|
|
|
|
|
- @Schema(description = "用户昵称", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋艿")
|
|
|
|
|
|
|
+ @Schema(description = "用户昵称", example = "芋艿")
|
|
|
@Size(max = 30, message = "用户昵称长度不能超过 30 个字符")
|
|
@Size(max = 30, message = "用户昵称长度不能超过 30 个字符")
|
|
|
private String nickname;
|
|
private String nickname;
|
|
|
|
|
|
|
@@ -28,4 +29,8 @@ public class UserProfileUpdateReqVO {
|
|
|
@Schema(description = "用户性别,参见 SexEnum 枚举类", example = "1")
|
|
@Schema(description = "用户性别,参见 SexEnum 枚举类", example = "1")
|
|
|
private Integer sex;
|
|
private Integer sex;
|
|
|
|
|
|
|
|
|
|
+ @Schema(description = "角色头像", example = "https://www.iocoder.cn/1.png")
|
|
|
|
|
+ @URL(message = "头像地址格式不正确")
|
|
|
|
|
+ private String avatar;
|
|
|
|
|
+
|
|
|
}
|
|
}
|