|
|
|
@ -383,6 +383,12 @@ public class PlatformServiceImpl implements PlatformService {
|
|
|
|
|
JSON.toJSONString(ioUploadOrderResponse), buildHeader(platformLinkRespons.getAppid(), platformLinkRespons.getSecretKey()));
|
|
|
|
|
//回调结果 返回信息
|
|
|
|
|
if (StrUtil.isNotBlank(resp) && resp.contains("20000")) {
|
|
|
|
|
BaseResponse baseResponse= JSON.parseObject(resp, BaseResponse.class);
|
|
|
|
|
String formSpmsOrders= (String) baseResponse.getData();
|
|
|
|
|
IoOrderEntity ioOrderEntity1=new IoOrderEntity();
|
|
|
|
|
ioOrderEntity1.setFromSpmsOrders(formSpmsOrders);
|
|
|
|
|
ioOrderEntity1.setBillNo(orderId);
|
|
|
|
|
ioOrderService.updateByBillNo(ioOrderEntity1);
|
|
|
|
|
return JSON.parseObject(resp, BaseResponse.class);
|
|
|
|
|
} else {
|
|
|
|
|
log.error("获取自助平台分库失败");
|
|
|
|
|