|
@@ -108,13 +108,15 @@ public class UserOrderClient extends BaseController {
|
|
|
userOrderRefundService.refundPaymentCallBack(data);
|
|
|
}
|
|
|
}, 60L, TimeUnit.SECONDS);
|
|
|
+ return res.getData().getResMsg();
|
|
|
} catch (BizException e) {
|
|
|
- log.error("回调业务异常,msg is {}", e.getMessage());
|
|
|
+ log.error("回调业务异常,data is {}, msg is {}", JSONObject.toJSONString(data), e.getMessage());
|
|
|
} catch (Exception e) {
|
|
|
+ log.error("回调业务异常,data is {}", JSONObject.toJSONString(data));
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
}
|
|
|
- return res.getData().getResMsg();
|
|
|
+ return null;
|
|
|
}
|
|
|
|
|
|
/***
|