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