Commit 93631fd2 authored by xiaozhe.chen's avatar xiaozhe.chen

运营系统替换中台接口

parent 9d067404
...@@ -85,6 +85,7 @@ public class IceServiceImpl implements IIceService { ...@@ -85,6 +85,7 @@ public class IceServiceImpl implements IIceService {
String result = null; String result = null;
try { try {
result = httpService.post(url, header, param); result = httpService.post(url, header, param);
log.info("{} 提现订单详情 loanId={},result:{}", logPre, loanId, result);
} catch (Exception e) { } catch (Exception e) {
log.error("{} 远程调用异常 url={},param={}", logPre, url, param, e); log.error("{} 远程调用异常 url={},param={}", logPre, url, param, e);
return JsonResult.buildErrorStateResult("网络异常", null); return JsonResult.buildErrorStateResult("网络异常", null);
......
...@@ -42,6 +42,7 @@ public class SidecarServiceImpl implements ISidecarService { ...@@ -42,6 +42,7 @@ public class SidecarServiceImpl implements ISidecarService {
Map<String, String> queryParam = new HashMap<>(2); Map<String, String> queryParam = new HashMap<>(2);
queryParam.put("loanId", loanId.toString()); queryParam.put("loanId", loanId.toString());
String result = httpService.get(url, queryParam); String result = httpService.get(url, queryParam);
log.info("{} 查询还款计划loanId={},result:{}", logPre, loanId, result);
if (StringUtils.isBlank(result)) { if (StringUtils.isBlank(result)) {
log.error("{} 查询还款计划失败 loanId={} result={}", logPre, loanId, result); log.error("{} 查询还款计划失败 loanId={} result={}", logPre, loanId, result);
return JsonResult.buildErrorStateResult("查询还款计划失败", null); return JsonResult.buildErrorStateResult("查询还款计划失败", null);
......
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