houzhongyi
2024-07-11 e7c1260db32209a078a962aaa0ad5492c35774fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.iailab.module.system.controller.admin.user.vo.profile;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.hibernate.validator.constraints.Length;
 
import javax.validation.constraints.Email;
import javax.validation.constraints.Size;
 
 
@Schema(description = "管理后台 - 用户个人信息更新 Request VO")
@Data
public class UserProfileUpdateReqVO {
 
    @Schema(description = "用户昵称", requiredMode = Schema.RequiredMode.REQUIRED, example = "iailab")
    @Size(max = 30, message = "用户昵称长度不能超过 30 个字符")
    private String nickname;
 
    @Schema(description = "用户邮箱", example = "iailab@iocoder.cn")
    @Email(message = "邮箱格式不正确")
    @Size(max = 50, message = "邮箱长度不能超过 50 个字符")
    private String email;
 
    @Schema(description = "手机号码", example = "15601691300")
    @Length(min = 11, max = 11, message = "手机号长度必须 11 位")
    private String mobile;
 
    @Schema(description = "用户性别,参见 SexEnum 枚举类", example = "1")
    private Integer sex;
 
}