⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbreply.java

📁 基于struct结构的jsp
💻 JAVA
字号:
package com.ntsky.bbs.service.db;import com.ntsky.bbs.service.Reply;/** * <p>Title: Ntsky OpenSource BBS</p> * <p>Description: 用户回复数据</p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: 天网文化发展有限公司</p> * @author 姚君林 * @version 1.0 */public class DBReply implements Reply{    private String repContent;    private String repTime;    private String repIp;    private int repId;    private int repTopicId;    private String action;    private String repUsrName;    /**     * 回复ID     * @return String     */    public int getRepId() {        return repId;    }    public void setRepId(int repId) {        this.repId = repId;    }    /**     * 隶属的主题     * @return String     */    public int getRepTopicId() {        return repTopicId;    }    public void setRepTopicId(int repTopicId) {        this.repTopicId = repTopicId;    }    /**     * 用户ID     * @return String     */    public String getRepUsrName() {        return repUsrName;    }    public void setRepUsrName(String repUsrName) {        this.repUsrName = repUsrName;    }    /**     * 回复的内容     * @return String     */    public String getRepContent() {        return repContent;    }    public void setRepContent(String repContent) {        this.repContent = repContent;    }    /**     * 回复时间     * @return String     */    public String getRepTime() {        return repTime;    }    public void setRepTime(String repTime) {        this.repTime = repTime;    }    /**     * 回复人的IP     * @return String     */    public String getRepIp() {        return repIp;    }    public void setRepIp(String repIp) {        this.repIp = repIp;    }    /**     * 用户动作     * @return String     */    public String getAction() {        return action;    }    public void setAction(String action) {        this.action = action;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -