孙永军 1 жил өмнө
parent
commit
85efe9cbfb

+ 2 - 1
src/main/java/com/sxtvs/open/api/review/service/impl/ReviewVideosRecordServiceImpl.java

@@ -80,7 +80,6 @@ public class ReviewVideosRecordServiceImpl extends ServiceImpl<ReviewVideosRecor
         }
         }
         body.fill();
         body.fill();
         reviewVideosRecord.setStatus(body.getStatus());
         reviewVideosRecord.setStatus(body.getStatus());
-        reviewVideosRecord.setResult(JSON.toJSONString(body));
 
 
         // 图片本地化
         // 图片本地化
         body.getResults().forEach(result -> result.getItems().forEach(item -> {
         body.getResults().forEach(result -> result.getItems().forEach(item -> {
@@ -88,6 +87,8 @@ public class ReviewVideosRecordServiceImpl extends ServiceImpl<ReviewVideosRecor
             evidence.setThumbnail(ossService.vcr2local(evidence.getThumbnail()));
             evidence.setThumbnail(ossService.vcr2local(evidence.getThumbnail()));
         }));
         }));
 
 
+        reviewVideosRecord.setResult(JSON.toJSONString(body));
+
         updateById(reviewVideosRecord);
         updateById(reviewVideosRecord);
     }
     }