dbreply.java

来自「基于struct结构的jsp」· Java 代码 · 共 98 行

JAVA
98
字号
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 + =
减小字号Ctrl + -
显示快捷键?