|
|
@ -79,7 +79,7 @@ public class ShiBeiCityGridApiImpl implements ShiBeiCityGridApi { |
|
|
|
// 百分号解析问题
|
|
|
|
json.replace("%", "%"); |
|
|
|
String data = "content=" + json; |
|
|
|
LOGGER.info("发送地址:" + ApiConstants.sendEventUrl + "||发送参数:" + data); |
|
|
|
LOGGER.info("发送地址:" + ApiConstants.sendEventUrl + "||发送参数:"); |
|
|
|
HttpResponse response = null; |
|
|
|
try { |
|
|
|
response = HttpRequest.post(ApiConstants.sendEventUrl).body(data) |
|
|
@ -114,7 +114,7 @@ public class ShiBeiCityGridApiImpl implements ShiBeiCityGridApi { |
|
|
|
@Override |
|
|
|
public SendEventResultDto sendEventManual(String data) { |
|
|
|
data = "content=" + data; |
|
|
|
LOGGER.info("发送地址:" + ApiConstants.sendEventUrl + "||发送参数:" + data); |
|
|
|
LOGGER.info("发送地址:" + ApiConstants.sendEventUrl + "||发送参数:"); |
|
|
|
HttpResponse response = null; |
|
|
|
try { |
|
|
|
response = HttpRequest.post(ApiConstants.sendEventUrl).body(data) |
|
|
@ -243,7 +243,7 @@ public class ShiBeiCityGridApiImpl implements ShiBeiCityGridApi { |
|
|
|
public EventRejectDoResultDto sendReDoEvent(EventRejectReDoFormDto rejectReDoDTO) { |
|
|
|
String json = JSONObject.toJSONString(rejectReDoDTO); |
|
|
|
String data = "content=" + json; |
|
|
|
LOGGER.info("发送地址:" + ApiConstants.sendEventUrl + "||发送参数:" + data); |
|
|
|
LOGGER.info("发送地址:" + ApiConstants.sendEventUrl + "||发送参数:"); |
|
|
|
HttpResponse response = null; |
|
|
|
try { |
|
|
|
response = HttpRequest.post(ApiConstants.sendEventUrl).body(data) |
|
|
|