📄 financeaction.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.isoftstone.isscrmweb.web.struts.finance;
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 org.apache.struts.actions.DispatchAction;
import com.isoftstone.isscrmweb.web.struts.AbstractDynamicAction;
/**
* MyEclipse Struts
* Creation date: 04-12-2007
*/
public class FinanceAction extends AbstractDynamicAction {
public ActionForward linkOne(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
return mapping.findForward("linkOne");
}
public ActionForward searchStuID(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
return mapping.findForward("linkTwo");
}
public ActionForward updateTuition(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
return mapping.findForward("linkTwo");
}
//显示所有班级信息
public ActionForward allTuition(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
return mapping.findForward("showAllTuition");
}
//按班级查找学生信息
public ActionForward searchInClass(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
return mapping.findForward("searchInClass");
}
//所有欠费学生的信息
public ActionForward shortTuition(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
return mapping.findForward("shortTuition");
}
public ActionForward showAllType(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
return mapping.findForward("classType");
}
public ActionForward showAllTypePrint(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
return mapping.findForward("printTuition");
}
//显示学生个人详细信息
public ActionForward searchOneStu(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
return mapping.findForward("oneStu");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -