Commit ab73da49 authored by 廖旭伟's avatar 廖旭伟

综窗对接

parent b693df21
...@@ -72,7 +72,7 @@ public class SyntheticalController extends BaseJsonBodyController { ...@@ -72,7 +72,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap(); Map<String, Object> model = new HashMap();
String busiDesc = "查询事项详情" ; String busiDesc = "查询事项详情" ;
try { try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query)); resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】"); this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) { } catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e); this.doException(this.request, busiDesc + " 【异常】", model, e);
...@@ -98,7 +98,7 @@ public class SyntheticalController extends BaseJsonBodyController { ...@@ -98,7 +98,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap(); Map<String, Object> model = new HashMap();
String busiDesc = "查询事项情形" ; String busiDesc = "查询事项情形" ;
try { try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query)); resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】"); this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) { } catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e); this.doException(this.request, busiDesc + " 【异常】", model, e);
...@@ -124,7 +124,7 @@ public class SyntheticalController extends BaseJsonBodyController { ...@@ -124,7 +124,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap(); Map<String, Object> model = new HashMap();
String busiDesc = "根据事项EventId查询办理事项材料" ; String busiDesc = "根据事项EventId查询办理事项材料" ;
try { try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query)); resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】"); this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) { } catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e); this.doException(this.request, busiDesc + " 【异常】", model, e);
...@@ -150,7 +150,7 @@ public class SyntheticalController extends BaseJsonBodyController { ...@@ -150,7 +150,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap(); Map<String, Object> model = new HashMap();
String busiDesc = "根据事项情形查询办理事项材料" ; String busiDesc = "根据事项情形查询办理事项材料" ;
try { try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query)); resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】"); this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) { } catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e); this.doException(this.request, busiDesc + " 【异常】", model, e);
...@@ -176,7 +176,7 @@ public class SyntheticalController extends BaseJsonBodyController { ...@@ -176,7 +176,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap(); Map<String, Object> model = new HashMap();
String busiDesc = "获取办件要素" ; String busiDesc = "获取办件要素" ;
try { try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query)); resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】"); this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) { } catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e); this.doException(this.request, busiDesc + " 【异常】", model, e);
...@@ -202,7 +202,7 @@ public class SyntheticalController extends BaseJsonBodyController { ...@@ -202,7 +202,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap(); Map<String, Object> model = new HashMap();
String busiDesc = "查询字典" ; String busiDesc = "查询字典" ;
try { try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query)); resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】"); this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) { } catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e); this.doException(this.request, busiDesc + " 【异常】", model, e);
...@@ -228,7 +228,7 @@ public class SyntheticalController extends BaseJsonBodyController { ...@@ -228,7 +228,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap(); Map<String, Object> model = new HashMap();
String busiDesc = "自助设备接件" ; String busiDesc = "自助设备接件" ;
try { try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query)); resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】"); this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) { } catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e); this.doException(this.request, busiDesc + " 【异常】", model, e);
...@@ -258,7 +258,7 @@ public class SyntheticalController extends BaseJsonBodyController { ...@@ -258,7 +258,7 @@ public class SyntheticalController extends BaseJsonBodyController {
String url = "http://8.136.255.30:1086/complex/api/event-implementation/get-by-id"; String url = "http://8.136.255.30:1086/complex/api/event-implementation/get-by-id";
JSONObject jsonObject=new JSONObject(); JSONObject jsonObject=new JSONObject();
System.out.println(jsonObject.toJSONString()); System.out.println(jsonObject.toJSONString());
jsonObject.put("eventId","852dcb2bb1aa70255871f75cf4868fa7"); jsonObject.put("eventId","2e4575157ed27dbc7330b1595207b49c");
String resp = null; String resp = null;
Map<String, Object> model = new HashMap(); Map<String, Object> model = new HashMap();
HashMap<String, String> paramsMap = new HashMap<>(); HashMap<String, String> paramsMap = new HashMap<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment