|
|
|
@ -10,9 +10,9 @@ public class MyInfo { |
|
|
|
|
//头像
|
|
|
|
|
private String headImg; |
|
|
|
|
//最近发帖数
|
|
|
|
|
private Integer recentPosts; |
|
|
|
|
private Integer posts; |
|
|
|
|
//最近访客数
|
|
|
|
|
private Integer recentVisitors; |
|
|
|
|
private Integer visitors; |
|
|
|
|
//手机号
|
|
|
|
|
private String mobie; |
|
|
|
|
//邮箱
|
|
|
|
@ -45,20 +45,20 @@ public class MyInfo { |
|
|
|
|
this.headImg = headImg; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Integer getRecentPosts() { |
|
|
|
|
return recentPosts; |
|
|
|
|
public Integer getPosts() { |
|
|
|
|
return posts; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setRecentPosts(Integer recentPosts) { |
|
|
|
|
this.recentPosts = recentPosts; |
|
|
|
|
public void setPosts(Integer posts) { |
|
|
|
|
this.posts = posts; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Integer getRecentVisitors() { |
|
|
|
|
return recentVisitors; |
|
|
|
|
public Integer getVisitors() { |
|
|
|
|
return visitors; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setRecentVisitors(Integer recentVisitors) { |
|
|
|
|
this.recentVisitors = recentVisitors; |
|
|
|
|
public void setVisitors(Integer visitors) { |
|
|
|
|
this.visitors = visitors; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getMobie() { |
|
|
|
|