messageform.java

来自「网上购物系统」· Java 代码 · 共 45 行

JAVA
45
字号
package tarena.form;

import org.apache.struts.action.ActionForm;

@SuppressWarnings("serial")
public class MessageForm extends ActionForm {
	private String receivename;
	private String title;
	private String msgContent;
	private Byte messtype;
	private Byte typevalue;
	
	public String getReceivename() {
		return receivename;
	}
	public void setReceivename(String receivename) {
		this.receivename = receivename;
	}
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}	
	public String getMsgContent() {
		return msgContent;
	}
	public void setMsgContent(String msgContent) {
		this.msgContent = msgContent;
	}
	public Byte getMesstype() {
		return messtype;
	}
	public void setMesstype(Byte messtype) {
		this.messtype = messtype;
	}
	public Byte getTypevalue() {
		return typevalue;
	}
	public void setTypevalue(Byte typevalue) {
		this.typevalue = typevalue;
	}	
	
}

⌨️ 快捷键说明

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