package cn.eoe.app.entity;
public class WikiContentItem {
private String title;
private int id;
private String detail_url;
private long time;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getDetail_url() {
return detail_url;
}
public void setDetail_url(String detail_url) {
this.detail_url = detail_url;
}
public long getTime() {
return time;
}
public void setTime(long time) {
this.time = time;
}
}