parent
6681836d79
commit
9c00d463c6
@ -0,0 +1,74 @@ |
|||||||
|
package com.community.pocket.entity.vo.android; |
||||||
|
|
||||||
|
public class ForumContentVo { |
||||||
|
//帖子详情id
|
||||||
|
private String id; |
||||||
|
//帖子id
|
||||||
|
private String forumId; |
||||||
|
//用户名
|
||||||
|
private String username; |
||||||
|
//发帖时间
|
||||||
|
private Long time; |
||||||
|
//楼层
|
||||||
|
private Long tower; |
||||||
|
//帖子正文
|
||||||
|
private String content; |
||||||
|
|
||||||
|
private InfoWithScore myInfo; |
||||||
|
|
||||||
|
public String getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
public void setId(String id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
|
||||||
|
public String getForumId() { |
||||||
|
return forumId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setForumId(String forumId) { |
||||||
|
this.forumId = forumId; |
||||||
|
} |
||||||
|
|
||||||
|
public String getUsername() { |
||||||
|
return username; |
||||||
|
} |
||||||
|
|
||||||
|
public void setUsername(String username) { |
||||||
|
this.username = username; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getTime() { |
||||||
|
return time; |
||||||
|
} |
||||||
|
|
||||||
|
public void setTime(Long time) { |
||||||
|
this.time = time; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getTower() { |
||||||
|
return tower; |
||||||
|
} |
||||||
|
|
||||||
|
public void setTower(Long tower) { |
||||||
|
this.tower = tower; |
||||||
|
} |
||||||
|
|
||||||
|
public String getContent() { |
||||||
|
return content; |
||||||
|
} |
||||||
|
|
||||||
|
public void setContent(String content) { |
||||||
|
this.content = content; |
||||||
|
} |
||||||
|
|
||||||
|
public InfoWithScore getMyInfo() { |
||||||
|
return myInfo; |
||||||
|
} |
||||||
|
|
||||||
|
public void setMyInfo(InfoWithScore myInfo) { |
||||||
|
this.myInfo = myInfo; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,29 @@ |
|||||||
|
package com.community.pocket.entity.vo.android; |
||||||
|
|
||||||
|
import com.community.pocket.entity.vo.Result; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
public class ForumDataResponse extends AndroidResponse<ForumDataResponse.Msg> { |
||||||
|
private List<ForumContentVo> forumContentList; |
||||||
|
|
||||||
|
public ForumDataResponse(Result result, Msg message, Object... args) { |
||||||
|
super(result, message, args); |
||||||
|
} |
||||||
|
|
||||||
|
public List<ForumContentVo> getForumContentList() { |
||||||
|
return forumContentList; |
||||||
|
} |
||||||
|
|
||||||
|
public void setForumContentList(List<ForumContentVo> forumContentList) { |
||||||
|
this.forumContentList = forumContentList; |
||||||
|
} |
||||||
|
|
||||||
|
public enum Msg implements CustomMessage { |
||||||
|
ok, |
||||||
|
fail, |
||||||
|
reply_ok, |
||||||
|
reply_fail, |
||||||
|
token |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,27 @@ |
|||||||
|
package com.community.pocket.entity.vo.android; |
||||||
|
|
||||||
|
import com.community.pocket.entity.po.android.Token; |
||||||
|
|
||||||
|
/** |
||||||
|
* 回复表单 |
||||||
|
*/ |
||||||
|
public class ForumReplyForm extends Token { |
||||||
|
private String forumId; |
||||||
|
private String content; |
||||||
|
|
||||||
|
public String getForumId() { |
||||||
|
return forumId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setForumId(String forumId) { |
||||||
|
this.forumId = forumId; |
||||||
|
} |
||||||
|
|
||||||
|
public String getContent() { |
||||||
|
return content; |
||||||
|
} |
||||||
|
|
||||||
|
public void setContent(String content) { |
||||||
|
this.content = content; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,79 @@ |
|||||||
|
package com.community.pocket.entity.vo.android; |
||||||
|
|
||||||
|
import com.community.pocket.entity.po.Forum; |
||||||
|
|
||||||
|
/** |
||||||
|
* 帖子列表 |
||||||
|
*/ |
||||||
|
public class ForumVo { |
||||||
|
//帖子
|
||||||
|
private String id; |
||||||
|
//发帖时间
|
||||||
|
private Long time; |
||||||
|
//帖子标题
|
||||||
|
private String title; |
||||||
|
//回复数
|
||||||
|
private Integer reply; |
||||||
|
//帖子类型
|
||||||
|
private Forum.ForumType forumType; |
||||||
|
//缩略内容
|
||||||
|
private String content; |
||||||
|
//发帖人
|
||||||
|
private String username; |
||||||
|
|
||||||
|
public Long getTime() { |
||||||
|
return time; |
||||||
|
} |
||||||
|
|
||||||
|
public void setTime(Long time) { |
||||||
|
this.time = time; |
||||||
|
} |
||||||
|
|
||||||
|
public String getTitle() { |
||||||
|
return title; |
||||||
|
} |
||||||
|
|
||||||
|
public void setTitle(String title) { |
||||||
|
this.title = title; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getReply() { |
||||||
|
return reply; |
||||||
|
} |
||||||
|
|
||||||
|
public void setReply(Integer reply) { |
||||||
|
this.reply = reply; |
||||||
|
} |
||||||
|
|
||||||
|
public Forum.ForumType getForumType() { |
||||||
|
return forumType; |
||||||
|
} |
||||||
|
|
||||||
|
public void setForumType(Forum.ForumType forumType) { |
||||||
|
this.forumType = forumType; |
||||||
|
} |
||||||
|
|
||||||
|
public String getContent() { |
||||||
|
return content; |
||||||
|
} |
||||||
|
|
||||||
|
public void setContent(String content) { |
||||||
|
this.content = content; |
||||||
|
} |
||||||
|
|
||||||
|
public String getUsername() { |
||||||
|
return username; |
||||||
|
} |
||||||
|
|
||||||
|
public void setUsername(String username) { |
||||||
|
this.username = username; |
||||||
|
} |
||||||
|
|
||||||
|
public String getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
public void setId(String id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,86 @@ |
|||||||
|
package com.community.pocket.entity.vo.android; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
public class Info { |
||||||
|
//用户名
|
||||||
|
private String username; |
||||||
|
//信用分
|
||||||
|
private Integer creditScore; |
||||||
|
//头像
|
||||||
|
private String headImg; |
||||||
|
//最近发帖数
|
||||||
|
private Integer recentPosts; |
||||||
|
//最近访客数
|
||||||
|
private Integer recentVisitors; |
||||||
|
//手机号
|
||||||
|
private String mobie; |
||||||
|
//邮箱
|
||||||
|
private String email; |
||||||
|
//信用分历史记录
|
||||||
|
private List<Integer> scoreHistory; |
||||||
|
|
||||||
|
public String getUsername() { |
||||||
|
return username; |
||||||
|
} |
||||||
|
|
||||||
|
public void setUsername(String username) { |
||||||
|
this.username = username; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getCreditScore() { |
||||||
|
return creditScore; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCreditScore(Integer creditScore) { |
||||||
|
this.creditScore = creditScore; |
||||||
|
} |
||||||
|
|
||||||
|
public String getHeadImg() { |
||||||
|
return headImg; |
||||||
|
} |
||||||
|
|
||||||
|
public void setHeadImg(String headImg) { |
||||||
|
this.headImg = headImg; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getRecentPosts() { |
||||||
|
return recentPosts; |
||||||
|
} |
||||||
|
|
||||||
|
public void setRecentPosts(Integer recentPosts) { |
||||||
|
this.recentPosts = recentPosts; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getRecentVisitors() { |
||||||
|
return recentVisitors; |
||||||
|
} |
||||||
|
|
||||||
|
public void setRecentVisitors(Integer recentVisitors) { |
||||||
|
this.recentVisitors = recentVisitors; |
||||||
|
} |
||||||
|
|
||||||
|
public String getMobie() { |
||||||
|
return mobie; |
||||||
|
} |
||||||
|
|
||||||
|
public void setMobie(String mobie) { |
||||||
|
this.mobie = mobie; |
||||||
|
} |
||||||
|
|
||||||
|
public String getEmail() { |
||||||
|
return email; |
||||||
|
} |
||||||
|
|
||||||
|
public void setEmail(String email) { |
||||||
|
this.email = email; |
||||||
|
} |
||||||
|
|
||||||
|
public List<Integer> getScoreHistory() { |
||||||
|
return scoreHistory; |
||||||
|
} |
||||||
|
|
||||||
|
public void setScoreHistory(List<Integer> scoreHistory) { |
||||||
|
this.scoreHistory = scoreHistory; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
package com.community.pocket.entity.vo.android; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
*/ |
||||||
|
public class InfoWithScore { |
||||||
|
//信用分
|
||||||
|
private Integer creditScore; |
||||||
|
|
||||||
|
public Integer getCreditScore() { |
||||||
|
return creditScore; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCreditScore(Integer creditScore) { |
||||||
|
this.creditScore = creditScore; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
package com.community.pocket.entity.vo.android; |
||||||
|
|
||||||
|
/** |
||||||
|
* 查找帖子 |
||||||
|
*/ |
||||||
|
public class QueryForum { |
||||||
|
//帖子id
|
||||||
|
private String forumId; |
||||||
|
|
||||||
|
public String getForumId() { |
||||||
|
return forumId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setForumId(String forumId) { |
||||||
|
this.forumId = forumId; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue