Prinf.java
上传用户:quasar007
上传日期:2022-08-11
资源大小:4067k
文件大小:1k
源码类别:

企业管理

开发平台:

Java

  1. package com.webtier.queryInformation;
  2. import org.apache.struts.action.*;
  3. import javax.servlet.http.*;
  4. import com.service.KhxxFacadeImpl;
  5. import com.service.KhxxFacade;
  6. public class Prinf
  7.     extends Action {
  8.   private KhxxFacade facade = null;
  9.   public Prinf() {
  10.     this.facade = new KhxxFacadeImpl();
  11.   }
  12.   public ActionForward perform(ActionMapping actionMapping,
  13.                                ActionForm actionForm,
  14.                                HttpServletRequest httpServletRequest,
  15.                                HttpServletResponse httpServletResponse) {
  16.     httpServletRequest.setAttribute("form", this.facade.khxxSelect());
  17.     return actionMapping.findForward("prinf");
  18.   }
  19. }