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

📄 queryreservebyroomtypeaction.java

📁 struts_宾馆管理系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.yourcompany.struts.action;

import java.util.ArrayList;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.DynaActionForm;

import service.BusinessReserve;

/**
 * MyEclipse Struts Creation date: 07-09-2007
 * 
 * XDoclet definition:
 * 
 * @struts.action path="/queryreservebyroomtype"
 *                name="queryreservebyroomtypeForm"
 *                input="/module/ydguanli/search/queryreserve.jsp"
 *                scope="request" validate="true"
 * @struts.action-forward name="error" path="/module/error.jsp"
 * @struts.action-forward name="success"
 *                        path="/module/ydguanli/search/queryreserve.jsp"
 */
public class QueryreservebyroomtypeAction extends Action {
	/*
	 * Generated Methods
	 */

	/**
	 * Method execute
	 * 
	 * @param mapping
	 * @param form
	 * @param request
	 * @param response
	 * @return ActionForward
	 * @throws Exception
	 */
	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response)
			throws Exception {
		DynaActionForm queryreservebyroomtypeForm = (DynaActionForm) form;// TODO
																			// Auto-generated
																			// method
																			// stub

		String roomtype = queryreservebyroomtypeForm.getString("roomtype");
		BusinessReserve bs = new BusinessReserve();
		ArrayList result = new ArrayList();
		result = bs.queryreservebyroomtype(roomtype);
		request.setAttribute("result", result);
		if (true) {
			return mapping.findForward("success");
		} else {
			return mapping.findForward("error");
		}

	}
}

⌨️ 快捷键说明

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