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

📄 exeaddpaymentaction.java

📁 完整的合同管理信息系统
💻 JAVA
字号:
package com.ICT.AFC.contractmoney.payment;

import org.apache.struts.action.*;
import javax.servlet.http.*;
import javax.servlet.ServletContext;

public class exeAddPaymentAction
    extends Action {
  public ActionForward execute(ActionMapping actionMapping,
                               ActionForm actionForm,
                               HttpServletRequest httpServletRequest,
                               HttpServletResponse httpServletResponse) throws Exception {
    /**@todo: complete the business logic here, this is just a skeleton.*/
    //throw new java.lang.UnsupportedOperationException("Method perform() not yet implemented.");
    String PageForward="addPayment";
    HttpSession session = httpServletRequest.getSession();
    ServletContext context = servlet.getServletContext();
    String contractID=httpServletRequest.getParameter("contractID");
    httpServletRequest.setAttribute("contractID",contractID);
    return (actionMapping.findForward(PageForward));
  }
}

⌨️ 快捷键说明

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