PersonalData.java
1.21 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
package com.cnlive.gundam.user.model;
/**
* @author 陈硕
* @time 2017/6/28 13:55
* @desc ${TODD}
*/
public class PersonalData {
private String itemName;
private String itemMessage;
private int itemType;
public static final int TYPE_HEADER = 0x1001;
public static final int TYPE_NICK = 0x1002;
public static final int TYPE_GENDER = 0x1003;
public static final int TYPE_MOBILE = 0x1004;
public static final int TYPE_EMAIL = 0x1005;
public static final int TYPE_ADDRESS = 0x1006;
public static final int TYPE_LOGOUT = 0x1007;
public PersonalData(String itemName, String itemMessage, int itemType) {
this.itemName = itemName;
this.itemMessage = itemMessage;
this.itemType = itemType;
}
public String getItemName() {
return itemName;
}
public void setItemName(String itemName) {
this.itemName = itemName;
}
public String getItemMessage() {
return itemMessage;
}
public void setItemMessage(String itemMessage) {
this.itemMessage = itemMessage;
}
public int getItemType() {
return itemType;
}
public void setItemType(int itemType) {
this.itemType = itemType;
}
}