?? information.java
字號:
package common.work.bean;
import java.util.Date;
//用來存放工作信息的數(shù)據(jù)表
public class Information implements java.io.Serializable {
// 工作數(shù)據(jù)表中的字段屬性
private Integer informationid;
private String informationname; //工作信息的名稱
private String content; //工作具體內(nèi)容
private Date begintime; //發(fā)布該工作的具體時間
private String workname;
private String type;
//構(gòu)造方法1
public Information() {
}
//構(gòu)造方法2
public Information(String informationname, String content) {
this.informationname = informationname;
this.content = content;
}
//構(gòu)造方法3
public Information(String informationname, String content, Date begintime,
String workname,String type) {
this.informationname = informationname;
this.content = content;
this.begintime = begintime;
this.workname = workname;
this.type = type;
}
// 各屬性的Get和Set方法
public Integer getInformationid() {
return this.informationid;
}
public void setInformationid(Integer informationid) {
this.informationid = informationid;
}
public String getInformationname() {
return this.informationname;
}
public void setInformationname(String informationname) {
this.informationname = informationname;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public Date getBegintime() {
return this.begintime;
}
public void setBegintime(Date begintime) {
this.begintime = begintime;
}
public String getWorkname() {
return this.workname;
}
public void setWorkname(String workname) {
this.workname = workname;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -