accessaction.java

来自「这是一个用java三层框架做的ISS学员管理系统」· Java 代码 · 共 46 行

JAVA
46
字号
package com.isoftstone.isscrmweb.web.struts.refer;

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.isoftstone.isscrmweb.web.struts.AbstractDynamicAction;

/**
 * 
 * @author Administrator
 *
 */
public class AccessAction extends AbstractDynamicAction {
	
	//已咨询人员来访记录的修改
	public ActionForward receiveEdit(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response)
			throws Exception {
	
		
		return mapping.findForward("receiveedit");
	}
	//已咨询人员的来访记录的查询
	public ActionForward receiveSelect(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response)
			throws Exception {
		return mapping.findForward("receiveselect");
	}
	public ActionForward receiveInfo(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response)
			throws Exception {
		return mapping.findForward("receveinfo");
	}
	//添加来访信息
	public ActionForward receiveInsert(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response)
			throws Exception {

		return mapping.findForward("receiveinsert");
	}
 }

⌨️ 快捷键说明

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