?? abractpost.java
字號:
//Source file: D:\\tarena\\data\\AbractPost.java
package tarena.data;
import java.util.Date;
public class AbractPost {
/**
* 標題
*/
protected String title;
/**
* 交易分
*/
protected String transactionpoint;
/**
* 閱讀權限
*/
protected Integer readaccess;
/**
* 圖標
*/
protected Integer icon;
protected String content;
/**
* 樓層
*/
protected Integer floor;
/**
* 發布時間
*/
protected Date sendtime;
/**
* 最后修改時間
*/
protected Date lastmodified;
/**
* 用戶名
*/
protected String uname;
/**
* @roseuid 49082347031C
*/
public AbractPost() {
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Integer getFloor() {
return floor;
}
public void setFloor(Integer floor) {
this.floor = floor;
}
public Integer getIcon() {
return icon;
}
public void setIcon(Integer icon) {
this.icon = icon;
}
public Date getLastmodified() {
return lastmodified;
}
public void setLastmodified(Date lastmodified) {
this.lastmodified = lastmodified;
}
public Integer getReadaccess() {
return readaccess;
}
public void setReadaccess(Integer readaccess) {
this.readaccess = readaccess;
}
public Date getSendtime() {
return sendtime;
}
public void setSendtime(Date sendtime) {
this.sendtime = sendtime;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getTransactionpoint() {
return transactionpoint;
}
public void setTransactionpoint(String transactionpoint) {
this.transactionpoint = transactionpoint;
}
public String getUname() {
return uname;
}
public void setUname(String uname) {
this.uname = uname;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -