setturnform.java

来自「基于JAVA的学生就业信息网 实现对信息浏览 检索 审核 修改和删除」· Java 代码 · 共 58 行

JAVA
58
字号
/*
 * Created on 2006-7-23
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package org.ug.sztz.webview.structs.forms;

import org.apache.struts.action.ActionForm;

/**
 * @author Skywalker
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class SetTurnForm extends ActionForm {
	private String order;
	private String pxzd;
	private String fs;
	/**
	 * @return Returns the fs.
	 */
	public String getFs() {
		return fs;
	}
	/**
	 * @param fs The fs to set.
	 */
	public void setFs(String fs) {
		this.fs = fs;
	}
	/**
	 * @return Returns the order.
	 */
	public String getOrder() {
		return order;
	}
	/**
	 * @param order The order to set.
	 */
	public void setOrder(String order) {
		this.order = order;
	}
	/**
	 * @return Returns the pxzd.
	 */
	public String getPxzd() {
		return pxzd;
	}
	/**
	 * @param pxzd The pxzd to set.
	 */
	public void setPxzd(String pxzd) {
		this.pxzd = pxzd;
	}
}

⌨️ 快捷键说明

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