getstorageinfoaction.java

来自「基本库存管理系统的框架 struts hibernate」· Java 代码 · 共 35 行

JAVA
35
字号
/**
 * 
 */
package com.strong.ims.struts.action;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;

import com.strong.ims.comutil.IConstants;
import com.strong.ims.comutil.exception.BaseException;
import com.strong.ims.struts.BaseAction;

/**
 * @author jqg
 * 获取某仓库信息Action
 */
public class GetStorageInfoAction extends BaseAction {

	/* (non-Javadoc)
	 * @see com.strong.ims.struts.BaseAction#doexecute(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
	 */
	public ActionForward doexecute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response)
			throws BaseException,Exception {
		// TODO Auto-generated method stub

		return mapping.findForward(IConstants.SUCCESS_PAGE);
	}

}

⌨️ 快捷键说明

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