加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

16

发布时间:2020-12-17 01:11:53 所属栏目:安全 来源:网络整理
导读:? /** ???? * 更新二级审核人 ???? * @param mapping ???? * @param form ???? * @param request ???? * @param response ???? * @return ???? * @throws Exception [参数说明] ???? * @author hongyan.cui ???? * @return ActionForward [返回类型说明] ???
?

/**
???? * <更新二级审核人>
???? * @param mapping
???? * @param form
???? * @param request
???? * @param response
???? * @return
???? * @throws Exception [参数说明]
???? * @author hongyan.cui
???? * @return ActionForward [返回类型说明]
???? * @exception throws [违例类型] [违例说明]
???? * @see [类、类#方法、类#成员]
???? */
??? public ActionForward updateSecondChecker(ActionMapping mapping,ActionForm form,HttpServletRequest request,
??????? HttpServletResponse response) throws Exception{
??????????? CheckerConfigFormBean checkerForm = (CheckerConfigFormBean)form;
??????????? PrintWriter out = response.getWriter();
??????????? //封装修改参数
??????????? JSONObject sJson = new JSONObject();
??????????? sJson.put("checker",checkerForm.getChecker());
??????????? sJson.put("code",checkerForm.getCode());
??????????? String result ="";
??????????? if ("".equals(checkerForm.getCode()) || null == checkerForm.getCode())
??????????? {
??????????????? result = "{"succeed":"false"}";
??????????? }
??????????? //调用修改审核人webservice接口
??????????? IPoApplyWsProxy iPoApplyWsProxy=new IPoApplyWsProxy();
??????????? iPoApplyWsProxy.updateSecondChecker(sJson.toString());
???????????? result = "{"succeed":"true"}";

??????????? if (null !=out) ??????????? { ??????????????? out.print(result); ??????????????? out.close(); ??????????? } ??????????? return null; ??????? }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读