package com.kaixin.android.result; /** * 状态数据的实体 * * @author gyz * */ public class StatusResult { /** * 状态的所有者姓名 */ private String name; /** * 状态的时间 */ private String time; /** * 状态的内容 */ private String content; /** * 状态的title */ private String title; /** * 状态的来源(包括网页,Android客户端) */ private String from; /** * 状态评论的数量 */ private int comment_count; /** * 状态转发的数量 */ private int forward_count; /** * 状态赞的数量 */ private int like_count; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getTime() { return time; } public void setTime(String time) { this.time = time; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getFrom() { return from; } public void setFrom(String from) { this.from = from; } public int getComment_count() { return comment_count; } public void setComment_count(int comment_count) { this.comment_count = comment_count; } public int getForward_count() { return forward_count; } public void setForward_count(int forward_count) { this.forward_count = forward_count; } public int getLike_count() { return like_count; } public void setLike_count(int like_count) { this.like_count = like_count; } }