|
@@ -661,7 +661,15 @@ public class KuaishouBatchCampaignPreviewServiceImpl extends ServiceImpl<Kuaisho
|
|
if (num == 2) {
|
|
if (num == 2) {
|
|
return !CollectionUtils.isEmpty(arr) && !CollectionUtils.isEmpty(arr2);
|
|
return !CollectionUtils.isEmpty(arr) && !CollectionUtils.isEmpty(arr2);
|
|
} else {
|
|
} else {
|
|
- return !CollectionUtils.isEmpty(arr);
|
|
|
|
|
|
+ if (!CollectionUtils.isEmpty(arr)) {
|
|
|
|
+ if (Check.isNull(arr.getString(0))) {
|
|
|
|
+ return false;
|
|
|
|
+ } else {
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|