UserInfo.java
1.57 KB
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
package com.sincre.springboot.ApiModel;
import com.fasterxml.jackson.annotation.JsonInclude;
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class UserInfo {
/**
* 国家码 必填项
* */
private String country_code;
/**
* 用户名 当用户名类型=1,用户名=mobile,当用户类型 = 2,用户名=email,当用户类型=3,用户名=username, 默认:3
*/
private String username;
/**
* 用户密码,业务方md5加密 是
* */
private String password;
/**
* 昵称 否
*/
private String nick_name;
/**
* 用户名类型,1:mobile,2:email,3:username,默认:3 否
*/
private String username_type;
public String getCountry_code() {
return country_code;
}
public void setCountry_code(String country_code) {
this.country_code = country_code;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getNick_name() {
return nick_name;
}
public void setNick_name(String nick_name) {
this.nick_name = nick_name;
}
public String getUsername_type() {
return username_type;
}
public void setUsername_type(String username_type) {
this.username_type = username_type;
}
}