58 lines
1018 B
Java
58 lines
1018 B
Java
package com.uiui.os.bean;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class ArticleInfo implements Serializable {
|
|
private static final long serialVersionUID = 5156317868469352633L;
|
|
|
|
int id;
|
|
/*标题*/
|
|
String title;
|
|
/*内容*/
|
|
String content;
|
|
/*缩略图链接*/
|
|
String img;
|
|
/*跳转链接*/
|
|
String jump_url;
|
|
|
|
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 String getContent() {
|
|
return content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
public String getImg() {
|
|
return img;
|
|
}
|
|
|
|
public void setImg(String img) {
|
|
this.img = img;
|
|
}
|
|
|
|
public String getJump_url() {
|
|
return jump_url;
|
|
}
|
|
|
|
public void setJump_url(String jump_url) {
|
|
this.jump_url = jump_url;
|
|
}
|
|
}
|