StatisticsUser.java
2.62 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package com.bjivt.entity.vo;
import java.util.Date;
import com.bjivt.util.Base64Utils;
public class StatisticsUser {
private Integer id;
private String name;
private int fansCount;
private int followerCount;
private int chineseCoin;
private int meCoinBalance;
private int level;
private int money;
private int recharge;
private String msisdn;
private String email;
private String signature;
private String hometown;
private String sex;
private int age;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
try {
if(name != null)
name = new String(Base64Utils.decode(name),"UTF-8");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return name;
}
public void setName(String name) {
this.name = name;
}
public int getFansCount() {
return fansCount;
}
public void setFansCount(int fansCount) {
this.fansCount = fansCount;
}
public int getFollowerCount() {
return followerCount;
}
public void setFollowerCount(int followerCount) {
this.followerCount = followerCount;
}
public int getChineseCoin() {
return chineseCoin;
}
public void setChineseCoin(int chineseCoin) {
this.chineseCoin = chineseCoin;
}
public int getMeCoinBalance() {
return meCoinBalance;
}
public void setMeCoinBalance(int meCoinBalance) {
this.meCoinBalance = meCoinBalance;
}
public int getLevel() {
return level;
}
public void setLevel(int level) {
this.level = level;
}
public int getMoney() {
return money;
}
public void setMoney(int money) {
this.money = money;
}
public int getRecharge() {
return recharge;
}
public void setRecharge(int recharge) {
this.recharge = recharge;
}
public String getMsisdn() {
return msisdn;
}
public void setMsisdn(String msisdn) {
this.msisdn = msisdn;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getSignature() {
try {
if(signature != null)
signature = new String(Base64Utils.decode(signature),"UTF-8");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
public String getHometown() {
return hometown;
}
public void setHometown(String hometown) {
this.hometown = hometown;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}