86 lines
1.4 KiB
Java
86 lines
1.4 KiB
Java
package com.shayu.onetoone.bean;
|
|
|
|
import com.yunbao.common.bean.BaseModel;
|
|
|
|
public class OfficialNoticeBean extends BaseModel {
|
|
String title;
|
|
String image;
|
|
String new_image;
|
|
String content;
|
|
long addtime;
|
|
int num;
|
|
String link;
|
|
int type;
|
|
|
|
|
|
public OfficialNoticeBean() {
|
|
}
|
|
|
|
public String getTitle() {
|
|
return title;
|
|
}
|
|
|
|
public void setTitle(String title) {
|
|
this.title = title;
|
|
}
|
|
|
|
public String getImage() {
|
|
return image;
|
|
}
|
|
|
|
public void setImage(String image) {
|
|
this.image = image;
|
|
}
|
|
|
|
public String getNew_image() {
|
|
return new_image;
|
|
}
|
|
|
|
public void setNew_image(String new_image) {
|
|
this.new_image = new_image;
|
|
}
|
|
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
public long getAddtime() {
|
|
return addtime;
|
|
}
|
|
|
|
public void setAddtime(long addtime) {
|
|
this.addtime = addtime;
|
|
}
|
|
|
|
public int getNum() {
|
|
if (num < 0) {
|
|
num = 0;
|
|
}
|
|
return num;
|
|
}
|
|
|
|
public void setNum(int num) {
|
|
this.num = num;
|
|
}
|
|
|
|
public String getLink() {
|
|
return link;
|
|
}
|
|
|
|
public void setLink(String link) {
|
|
this.link = link;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(int type) {
|
|
this.type = type;
|
|
}
|
|
}
|