public ActionForward changeCheckAccountErrorLog(
     ActionMapping mapping,
     ActionForm form,
     HttpServletRequest request,
     HttpServletResponse response)
     throws Exception {
   CheckAccountErrorLogForm checkAcountErrorLogForm = (CheckAccountErrorLogForm) form;
   CheckAccountErrorLogBean checkAccountErrorLogBean = new CheckAccountErrorLogBean();
   checkAccountErrorLogBean.changeCheckAccountErrorLog(checkAcountErrorLogForm); // 执行重对账
   PageAttribute page =
       new PageAttribute(checkAcountErrorLogForm.getCurPage(), Constant.PAGE_SIZE);
   String[] totalFee =
       checkAccountErrorLogBean.checkAccountErrorLogCount(
           "wht_accountErrorLog", checkAcountErrorLogForm);
   page.setRsCount(Integer.parseInt(totalFee[0]));
   SysUserInterface sit = new SysUserInterface();
   List list =
       checkAccountErrorLogBean.listCheckAccountErrorLog(
           "wht_accountErrorLog", checkAcountErrorLogForm, page);
   request.setAttribute("totalFee", totalFee);
   request.setAttribute("itypeSel", getStingSel(sit.listInterfaceType(), "接口商"));
   request.setAttribute("checkAccountErrorLog", checkAcountErrorLogForm);
   request.setAttribute("page", page);
   request.setAttribute("checkAccountErrorLogList", list);
   return new ActionForward("/task/checkAccountErrorLogList.jsp");
 }