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

📄 replybean.java

📁 简单的流言板系统,用myeclipse进行编写的,采用简单的jstl+javabean+servlet+jsp,属于三层架构.
💻 JAVA
字号:
package me.work.beans;

public class ReplyBean {
	int replyID;
	String userName;
	int msgID;
	String replyDate;
	String content;

	/**
	 * @return the replyID
	 */
	public int getReplyID() {
		return replyID;
	}

	/**
	 * @param replyID
	 *            the replyID to set
	 */
	public void setReplyID(int replyID) {
		this.replyID = replyID;
	}

	

	/**
	 * @return the msgID
	 */
	public int getMsgID() {
		return msgID;
	}

	/**
	 * @param msgID
	 *            the msgID to set
	 */
	public void setMsgID(int msgID) {
		this.msgID = msgID;
	}

	/**
	 * @return the replyDate
	 */
	public String getReplyDate() {
		return replyDate;
	}

	/**
	 * @param replyDate
	 *            the replyDate to set
	 */
	public void setReplyDate(String replyDate) {
		this.replyDate = replyDate;
	}

	/**
	 * @return the content
	 */
	public String getContent() {
		return content;
	}

	/**
	 * @param content
	 *            the content to set
	 */
	public void setContent(String content) {
		this.content = content;
	}

	/**
	 * @return the userName
	 */
	public String getUserName() {
		return userName;
	}

	/**
	 * @param userName the userName to set
	 */
	public void setUserName(String userName) {
		this.userName = userName;
	}
}

⌨️ 快捷键说明

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