admin
2021-06-26 5d9e2fbeab87327ce11080485bf4d971f93f542a
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package com.matrix.system.app.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import javax.validation.constraints.NotBlank;
import java.util.Date;
 
/**
 * @author wzy
 * @date 2021-01-06
 **/
@ApiModel(value = "ModifyUserDto", description = "编辑用户信息接口参数接收类")
public class ModifyUserDto {
 
    @ApiModelProperty(value = "头像")
    private String photo;
 
    @NotBlank(message = "参数错误")
    @ApiModelProperty(value = "姓名")
    private String name;
 
    @ApiModelProperty(value = "英文名")
    private String engName;
 
    @NotBlank(message = "参数错误")
    @ApiModelProperty(value = "手机号")
    private String telphone;
 
    @ApiModelProperty(value = "性别")
    private String sex;
 
    @ApiModelProperty(value = "生日")
    private Date birthday;
 
    @ApiModelProperty(value = "邮箱")
    private String email;
 
    @ApiModelProperty(value = "服务签名")
    private String serviceSign;
 
    @ApiModelProperty(value = "地址")
    private String address;
 
    public String getPhoto() {
        return photo;
    }
 
    public void setPhoto(String photo) {
        this.photo = photo;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getEngName() {
        return engName;
    }
 
    public void setEngName(String engName) {
        this.engName = engName;
    }
 
    public String getTelphone() {
        return telphone;
    }
 
    public void setTelphone(String telphone) {
        this.telphone = telphone;
    }
 
    public String getSex() {
        return sex;
    }
 
    public void setSex(String sex) {
        this.sex = sex;
    }
 
    public Date getBirthday() {
        return birthday;
    }
 
    public void setBirthday(Date birthday) {
        this.birthday = birthday;
    }
 
    public String getEmail() {
        return email;
    }
 
    public void setEmail(String email) {
        this.email = email;
    }
 
    public String getServiceSign() {
        return serviceSign;
    }
 
    public void setServiceSign(String serviceSign) {
        this.serviceSign = serviceSign;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
}