|
@@ -1,5 +1,6 @@
|
|
|
package com.zswl.cloud.springBtach.server.core.job.video;
|
|
|
|
|
|
+import cn.hutool.json.JSON;
|
|
|
import cn.hutool.json.JSONObject;
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
import com.github.microservice.auth.client.content.ResultContent;
|
|
@@ -58,6 +59,11 @@ public class VideoDeliveryJob {
|
|
|
getResultContent().set(ResultContent.build(ResultState.Fail));
|
|
|
return RepeatStatus.FINISHED;
|
|
|
}
|
|
|
+ String extend = goodsResultModel.getExtend();
|
|
|
+ JSONObject entries1 = JSONUtil.parseObj(extend);
|
|
|
+ entries1.set("response", resultContent.getContent());
|
|
|
+ orderService2.updateExtend(goodsResultModel.getId(), JSONUtil.toJsonStr(entries1));
|
|
|
+
|
|
|
orderService2.delivery(goodsResultModel.getId());
|
|
|
VerificationModel verificationModel = new VerificationModel();
|
|
|
verificationModel.setId(goodsResultModel.getId());
|