⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 seacheractionform.java

📁 用户可以登陆注册对房屋信息的增删改查功能
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.qhit.kgdyffje.struts.form;

import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;

/** 
 * MyEclipse Struts
 * Creation date: 02-06-2009
 * 
 * XDoclet definition:
 * @struts.form name="seacherActionForm"
 */
public class SeacherActionForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** title property */
	private String txtseach;


	/** great_hire property */
	private double great_hire;

	/** send_date property */
	private int send_date;

	/** house_shi property */
	private int house_shi;


	/** house_ting property */
	private int house_ting;

	private String[] house_type=null;

	/** less_hire property */
	private double less_hire;


	/** area property */
	private int area;

	/** channel property */
	private int channel;

	/*
	 * Generated Methods
	 */

	/** 
	 * Method validate
	 * @param mapping
	 * @param request
	 * @return ActionErrors
	 */
	public ActionErrors validate(ActionMapping mapping,
			HttpServletRequest request) {
		// TODO Auto-generated method stub
		return null;
	}

	/** 
	 * Method reset
	 * @param mapping
	 * @param request
	 */
	public void reset(ActionMapping mapping, HttpServletRequest request) {
		// TODO Auto-generated method stub
	}

	public int getArea() {
		return area;
	}

	public void setArea(int area) {
		this.area = area;
	}

	public int getChannel() {
		return channel;
	}

	public void setChannel(int channel) {
		this.channel = channel;
	}

	public double getGreat_hire() {
		return great_hire;
	}

	public void setGreat_hire(double great_hire) {
		this.great_hire = great_hire;
	}

	public int getHouse_shi() {
		return house_shi;
	}

	public void setHouse_shi(int house_shi) {
		this.house_shi = house_shi;
	}

	public int getHouse_ting() {
		return house_ting;
	}

	public void setHouse_ting(int house_ting) {
		this.house_ting = house_ting;
	}

	public String[] getHouse_type() {
		return house_type;
	}

	public void setHouse_type(String[] house_type) {
		this.house_type = house_type;
	}

	public double getLess_hire() {
		return less_hire;
	}

	public void setLess_hire(double less_hire) {
		this.less_hire = less_hire;
	}

	public int getSend_date() {
		return send_date;
	}

	public void setSend_date(int send_date) {
		this.send_date = send_date;
	}

	public String getTxtseach() {
		return txtseach;
	}

	public void setTxtseach(String txtseach) {
		this.txtseach = txtseach;
	}

}

⌨️ 快捷键说明

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