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

企业管理

开发平台:

Java

  1. package com.webtier.clientKhmydAction;
  2. import org.apache.struts.action.*;
  3. import javax.servlet.http.*;
  4. import com.service.CkhmydFacade;
  5. import com.service.CkhmydFacadeImpl;
  6. import com.domain.CkhmydForm;
  7. import com.tool.Chinese;
  8. //插入操作
  9. public class CkhmydInsert
  10.     extends Action {
  11.   private CkhmydFacade khmyd = null;
  12.   public CkhmydInsert() {
  13.     this.khmyd = new CkhmydFacadeImpl();
  14.   }
  15.   public ActionForward perform(ActionMapping actionMapping,
  16.                                ActionForm actionForm,
  17.                                HttpServletRequest httpServletRequest,
  18.                                HttpServletResponse httpServletResponse) {
  19.     Chinese chinese = new Chinese();
  20.     CkhmydForm ckhmydForm = (CkhmydForm) actionForm;
  21.     ckhmydForm.setKhmyd_id(httpServletRequest.getParameter("id"));
  22.     ckhmydForm.setKhmyd_myd(chinese.str(httpServletRequest.getParameter("myd")));
  23.     ckhmydForm.setKhmyd_bz(chinese.str(httpServletRequest.getParameter("bz")));
  24.     this.khmyd.khmydInsert(ckhmydForm);
  25.     return actionMapping.findForward("ckhmydInsert");
  26.   }
  27. }