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

综窗对接

parent b693df21
......@@ -72,7 +72,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap();
String busiDesc = "查询事项详情" ;
try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query));
resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e);
......@@ -98,7 +98,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap();
String busiDesc = "查询事项情形" ;
try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query));
resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e);
......@@ -124,7 +124,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap();
String busiDesc = "根据事项EventId查询办理事项材料" ;
try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query));
resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e);
......@@ -150,7 +150,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap();
String busiDesc = "根据事项情形查询办理事项材料" ;
try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query));
resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e);
......@@ -176,7 +176,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap();
String busiDesc = "获取办件要素" ;
try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query));
resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e);
......@@ -202,7 +202,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap();
String busiDesc = "查询字典" ;
try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query));
resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e);
......@@ -228,7 +228,7 @@ public class SyntheticalController extends BaseJsonBodyController {
Map<String, Object> model = new HashMap();
String busiDesc = "自助设备接件" ;
try {
resp = HttpUtil.doPost(url, JSONObject.toJSONString(query));
resp = doPost(url, JSONObject.toJSONString(query));
this.recordSysLog(this.request, busiDesc + " 【成功】");
} catch (Exception e) {
this.doException(this.request, busiDesc + " 【异常】", model, e);
......@@ -258,7 +258,7 @@ public class SyntheticalController extends BaseJsonBodyController {
String url = "http://8.136.255.30:1086/complex/api/event-implementation/get-by-id";
JSONObject jsonObject=new JSONObject();
System.out.println(jsonObject.toJSONString());
jsonObject.put("eventId","852dcb2bb1aa70255871f75cf4868fa7");
jsonObject.put("eventId","2e4575157ed27dbc7330b1595207b49c");
String resp = null;
Map<String, Object> model = 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