Bladeren bron

增加字段

xueyiming 1 week geleden
bovenliggende
commit
0aa5bb6d5b

+ 2 - 2
long-article-recommend-service/src/main/java/com/tzld/longarticle/recommend/server/model/vo/CoverStatisticOneDataExport.java

@@ -11,14 +11,14 @@ public class CoverStatisticOneDataExport {
 
     private String accountName;
 
+    private String title;
+
     private String contentUrl;
 
     private String index;
 
     private Integer fans = 0;
 
-    private Integer publishCount = 0;
-
     private Integer showViewCount = 0;
 
     private Double showViewRate = 0.0;

+ 1 - 0
long-article-recommend-service/src/main/java/com/tzld/longarticle/recommend/server/service/recommend/DataDashboardService.java

@@ -3355,6 +3355,7 @@ public class DataDashboardService {
                 }
                 coverStatisticOneDataExport.setDateStr(dateStr);
                 coverStatisticOneDataExport.setAccountName(article.getAccountName());
+                coverStatisticOneDataExport.setTitle(article.getTitle());
                 coverStatisticOneDataExport.setContentUrl(article.getContentUrl());
                 if (article.getItemIndex() == 1) {
                     coverStatisticOneDataExport.setIndex("头条");