📄 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 + -