//设置语种
HttpSession session = aRequest.getSession();
String nls = (String) session.getAttribute(SupportConstants.CFG_NLS);
jsonObj.put("nls", nls);
//清空session里选择的数据 组织MAP供更新审核人的时候使用,在下次查询之前 情空里面的MAP
session.removeAttribute("selectedCheckerMap");
IPoApplyWsProxy proxy = new IPoApplyWsProxy();
String result = proxy.getCheckerConfigList(jsonObj.toString());
JSONObject resultJson = new JSONObject(result);
Integer records = (Integer)resultJson.get("total_row");
String resultListStr = resultJson.getString("checkerConfigList");
if(null != result && !"".equalsIgnoreCase(result.trim()) && !"[]".equalsIgnoreCase(result.trim()))
{
List<CheckerConfigFormBean> list = createList(resultListStr);
session.setAttribute("checkerConfigList", list);
}
session.setAttribute("total_row", records);