newgzform.java

来自「Eclips+tomcat基于struts开发的一个员工系统的小例子」· Java 代码 · 共 83 行

JAVA
83
字号
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_3.8.4/xslt/JavaClass.xslpackage com.zhang.form;import org.apache.struts.action.ActionForm;/** * MyEclipse Struts Creation date: 02-28-2006 *  * XDoclet definition: *  * @struts:form name="newgzForm" */public class NewgzForm extends ActionForm {	private int ygid;	private int jj;	private int gz;	private int yf;	/**	 * @return 返回 gz。	 */	public int getGz() {		return gz;	}	/**	 * @param gz	 *            要设置的 gz。	 */	public void setGz(int gz) {		this.gz = gz;	}	/**	 * @return 返回 jj。	 */	public int getJj() {		return jj;	}	/**	 * @param jj	 *            要设置的 jj。	 */	public void setJj(int jj) {		this.jj = jj;	}	/**	 * @return 返回 yf。	 */	public int getYf() {		return yf;	}	/**	 * @param yf	 *            要设置的 yf。	 */	public void setYf(int yf) {		this.yf = yf;	}	/**	 * @return 返回 ygname。	 */	public int getYgid() {		return ygid;	}	/**	 * @param ygname	 *            要设置的 ygname。	 */	public void setYgid(int ygid) {		this.ygid = ygid;	}}

⌨️ 快捷键说明

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