wangyunpeng 2 часов назад
Родитель
Сommit
807b7d8ce0

+ 1 - 2
api-module/src/main/java/com/tzld/piaoquan/api/job/contentplatform/ContentPlatformDemandVideoJob.java

@@ -205,7 +205,6 @@ public class ContentPlatformDemandVideoJob {
                 String matchVideoFilter = demandItem.getString("matchVideoFilter");
                 String matchSort = demandItem.getString("matchSort");
                 Double sceneSumRov = demandItem.getDouble("sceneSumRov");
-                Long matchExposurePv = demandItem.getLong("matchExposurePv");
 
                 JSONArray matchedVideos = demandItem.getJSONArray("matchedVideos");
                 if (matchedVideos == null || matchedVideos.isEmpty()) {
@@ -241,7 +240,6 @@ public class ContentPlatformDemandVideoJob {
                     demandVideo.setVisitUv(visitUv);
                     demandVideo.setUvRatio(uvRatio);
                     demandVideo.setTotalRov(totalRov);
-                    demandVideo.setMatchExposurePv(matchExposurePv);
                     demandVideo.setOnlineAction(onlineAction != null ? onlineAction : "");
                     demandVideo.setChannelLevel3(channelLevel3 != null ? channelLevel3 : "");
                     demandVideo.setMatchMethod(matchMethod != null ? matchMethod : "");
@@ -255,6 +253,7 @@ public class ContentPlatformDemandVideoJob {
                     demandVideo.setRov(videoItem.getDouble("rov"));
                     demandVideo.setMatchText(videoItem.getString("text") != null ? videoItem.getString("text") : "");
                     demandVideo.setExperimentId(videoItem.getString("experimentId"));
+                    demandVideo.setMatchExposurePv(videoItem.getLong("matchExposurePv"));
                     demandVideo.setStatus(1);
                     demandVideo.setCreateTimestamp(now);
                     if (Objects.isNull(demandVideo.getRov()) || demandVideo.getRov() == 0.0) {