package bean; public class Article extends FoundItem { private int id; private String title; private int comments; private int views; private long add_time; private String post_type; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public int getComments() { return comments; } public void setComments(int comments) { this.comments = comments; } public int getViews() { return views; } public void setViews(int views) { this.views = views; } public long getAdd_time() { return add_time; } public void setAdd_time(long add_time) { this.add_time = add_time; } public String getPost_type() { return post_type; } public void setPost_type(String post_type) { this.post_type = post_type; } }