package cn.eoe.app.entity.base;
public abstract class BaseContentItem {
public int id; //Item Id
public String short_content; //Item简介
public String detail_url; //详情url
public long time;
public String title;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public long getTime() {
return time;
}
public void setTime(long time) {
this.time = time;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getShort_content() {
return short_content;
}
public void setShort_content(String short_content) {
this.short_content = short_content;
}
public String getDetail_url() {
return detail_url;
}
public void setDetail_url(String detail_url) {
this.detail_url = detail_url;
}
}