瀏覽代碼

修改字段名称

xueyiming 1 月之前
父節點
當前提交
4b83627dd0

+ 1 - 1
long-article-server/src/main/java/com/tzld/piaoquan/longarticle/model/bo/MatchContent.java

@@ -27,5 +27,5 @@ public class MatchContent {
 
     private Integer publishFlag;
 
-    private String contentTraceId;
+    private String videoPoolTraceId;
 }

+ 1 - 1
long-article-server/src/main/java/com/tzld/piaoquan/longarticle/model/dto/MiniprogramCardRequest.java

@@ -18,5 +18,5 @@ public class MiniprogramCardRequest {
     private String flowPoolLevelTag;
     private Integer publishFlag;
     private String channelContentId;
-    private String contentTraceId;
+    private String videoPoolTraceId;
 }

+ 1 - 1
long-article-server/src/main/java/com/tzld/piaoquan/longarticle/model/vo/ContentItemVO.java

@@ -25,6 +25,6 @@ public class ContentItemVO {
 
     private String channelContentId;
 
-    private String contentTraceId;
+    private String videoPoolTraceId;
 
 }

+ 2 - 2
long-article-server/src/main/java/com/tzld/piaoquan/longarticle/service/local/impl/CoreServiceImpl.java

@@ -348,7 +348,7 @@ public class CoreServiceImpl implements CoreService {
                                 request.setArticleId(matchContent.getSourceId());
                                 request.setFlowPoolLevelTag(matchContent.getFlowPoolLevelTag());
                                 request.setPublishFlag(PublicFlagEnum.NOT_PUBLIC.getStatusCode());
-                                request.setContentTraceId(matchContent.getContentTraceId());
+                                request.setVideoPoolTraceId(matchContent.getVideoPoolTraceId());
                                 Integer status = matchService.matchMiniprogramVideo(request);
                                 if (status == MatchRequestStatusEnum.NOT_CONTENT.getStatusCode()) {
                                     MatchMiniprogramStatusParam statusParam = new MatchMiniprogramStatusParam();
@@ -392,7 +392,7 @@ public class CoreServiceImpl implements CoreService {
                     matchContent.setFlowPoolLevelTag(contentItemVO.getFlowPoolLevelTag());
                     matchContent.setSourceType(contentItemVO.getSourceType());
                     matchContent.setChannelContentId(contentItemVO.getChannelContentId());
-                    matchContent.setContentTraceId(contentItemVO.getContentTraceId());
+                    matchContent.setVideoPoolTraceId(contentItemVO.getVideoPoolTraceId());
                     try {
                         matchQueue.put(matchContent);
                     } catch (InterruptedException e) {