📄 replymodel.java
字号:
/* * 作者: 胡李青 * qq: 31703299 * Copyright (c) 2007 huliqing * 主页 http://www.tbuy.biz/ * 你可以免费使用该软件,未经许可请勿作用于任何商业目的,如有技术问题请与本人联系! */package biz.tbuy.bbs;import java.io.Serializable;import java.sql.Timestamp;/** * @author huliqing * <p><b>qq:</b>31703299 * <p><b>E-mail:</b> * <a href="mailto:huliqing.cn@gmail.com">huliqing.cn@gmail.com</a> * <p><b>Homepage:</b> * <a href="http://www.tbuy.biz/">http://www.tbuy.biz/</a> */public class ReplyModel implements Serializable{ private int num; private String content; private String ip; private String byUser; private int byTopic; private Timestamp date; private boolean beRevoke = false; private boolean beUpload = false; private String editByUser; private Timestamp editByDate; public ReplyModel() { } public void setNum(int num) { this.num = num; } public int getNum() { return num; } public void setContent(String content) { this.content = content; } public String getContent() { return content; } public void setIp(String ip) { this.ip = ip; } public String getIp() { return ip; } public void setByUser(String byUser) { this.byUser = byUser; } public String getByUser() { return byUser; } public void setByTopic(int byTopic) { this.byTopic = byTopic; } public int getByTopic() { return byTopic; } public void setDate(Timestamp date) { this.date = date; } public Timestamp getDate() { return date; } public void setBeRevoke(boolean beRevoke) { this.beRevoke = beRevoke; } public boolean getBeRevoke() { return beRevoke; } public void setBeUpload(boolean beUpload) { this.beUpload = beUpload; } public boolean getBeUpload() { return beUpload; } public void setEditByUser(String editByUser) { this.editByUser = editByUser; } public String getEditByUser() { return editByUser; } public void setEditByDate(Timestamp editByDate) { this.editByDate = editByDate; } public Timestamp getEditByDate() { return editByDate; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -