pwdform.java

来自「spring+struts+hibernate做的银行系统」· Java 代码 · 共 59 行

JAVA
59
字号
/*
 * Created on 2006-3-9
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package cn.com.tym.blank.form;

/**
 * @author Boss
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
import org.apache.struts.validator.ValidatorActionForm;


public class  PwdForm extends ValidatorActionForm{

	private String ename=null;
	private String email=null;
	private String equestion=null;
	private String eanswer=null;
	private String evalidate=null;
	
	
 
	public String getEanswer() {
		return eanswer;
	}
	public void setEanswer(String eanswer) {
		this.eanswer = eanswer;
	}
	public String getEmail() {
		return email;
	}
	public void setEmail(String email) {
		this.email = email;
	}
	public String getEname() {
		return ename;
	}
	public void setEname(String ename) {
		this.ename = ename;
	}
	public String getEquestion() {
		return equestion;
	}
	public void setEquestion(String equestion) {
		this.equestion = equestion;
	}
	public String getEvalidate() {
		return evalidate;
	}
	public void setEvalidate(String evalidate) {
		this.evalidate = evalidate;
	}
}

⌨️ 快捷键说明

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