📄 accessaction.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -