|
@@ -188,7 +188,10 @@ public class ContentPlatformDatastatJob {
|
|
|
if (!rootSourceIds.contains(rootSourceId)) {
|
|
|
continue;
|
|
|
}
|
|
|
- Integer firstLevelCount = Integer.valueOf((String) record.get(8));
|
|
|
+ int firstLevelCount = Integer.parseInt((String) record.get(8));
|
|
|
+ if (firstLevelCount == 0) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
item.setDateStr(dt);
|
|
|
Long planId = rootSourceIdMap.get(rootSourceId);
|
|
|
Long videoId = planVideoMap.get(planId);
|
|
@@ -213,7 +216,10 @@ public class ContentPlatformDatastatJob {
|
|
|
if (!rootSourceIds.contains(rootSourceId)) {
|
|
|
continue;
|
|
|
}
|
|
|
- Integer firstLevelCount = Integer.valueOf((String) record.get(8));
|
|
|
+ int firstLevelCount = Integer.parseInt((String) record.get(8));
|
|
|
+ if (firstLevelCount == 0) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
item.setDateStr(dt);
|
|
|
Long planId = rootSourceIdMap.get(rootSourceId);
|
|
|
Long videoId = planVideoMap.get(planId);
|