📄 revert.java
字号:
package net.javapassion.jaguey.domain;
import java.util.Date;
//版本: JagueyBBS 1.1
//功能: 论坛回复帖子数据库映射Bean
//作者: 赵程佳
//时间: 2006-02-05 20:35:37
public class Revert {
private String revertId;
private Topic topic;
private String title;
private String content;
private String faceIcon;
private Date appearTime;
private Date lastTime;
private String userName;
private String lastUser;
private Integer orderId;
public Revert(String revertId, Topic topic, String title, String content,
String faceIcon, Date appearTime, Date lastTime, String userName,
String lastUser, Integer orderId) {
this.revertId = revertId;
this.topic = topic;
this.title = title;
this.content = content;
this.faceIcon = faceIcon;
this.appearTime = appearTime;
this.lastTime = lastTime;
this.userName = userName;
this.lastUser = lastUser;
this.orderId = orderId;
}
public Revert() {
}
public String getRevertId() {
return this.revertId;
}
public void setRevertId(String revertId) {
this.revertId = revertId;
}
public Topic getTopic() {
return this.topic;
}
public void setTopic(Topic topic) {
this.topic = topic;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getFaceIcon() {
return this.faceIcon;
}
public void setFaceIcon(String faceIcon) {
this.faceIcon = faceIcon;
}
public Date getAppearTime() {
return this.appearTime;
}
public void setAppearTime(Date appearTime) {
this.appearTime = appearTime;
}
public Date getLastTime() {
return this.lastTime;
}
public void setLastTime(Date lastTime) {
this.lastTime = lastTime;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getLastUser() {
return this.lastUser;
}
public void setLastUser(String lastUser) {
this.lastUser = lastUser;
}
public Integer getOrderId() {
return this.orderId;
}
public void setOrderId(Integer orderId) {
this.orderId = orderId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -