replybean.java

来自「简单的流言板系统,用myeclipse进行编写的,采用简单的jstl+javab」· Java 代码 · 共 86 行

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