ACTION10

来源:互联网 发布:死亡岛终极版优化 编辑:程序博客网 时间:2024/05/17 13:07
  

 /**
     * <跳转查询界面>
     * @param mapping
     * @param form
     * @param request
     * @param response
     * @return
     * @throws Exception
     *
     * @return ActionForward
     * @exception throws
     * @see [类、类#方法、类#成员]
     */
    public ActionForward gotoUpdateSecondCheckerPage(ActionMapping mapping,ActionForm form, HttpServletRequest request,
    HttpServletResponse response) throws Exception
    {

        CheckerConfigFormBean checkerForm = (CheckerConfigFormBean)form;

        //设置跳转修改页面的值
        request.setAttribute("checkerInfo", checkerForm);
     return mapping.findForward("editSecondChecker");
    }
   
   
    private JSONObject validateParameter(HttpServletRequest request,JSONObject json,boolean isAddFlag){
        String lineId = request.getParameter("productLine");
        String familyId = request.getParameter("productFamily");
        String productId = request.getParameter("product");
        String checker = request.getParameter("checker");