|
|
@@ -15,6 +15,7 @@ import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
+import java.util.Arrays;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
@@ -222,7 +223,7 @@ public class KuaishouUnitReportDailyServiceImpl extends ServiceImpl<KuaishouUnit
|
|
|
param.put("start_date", startDate);
|
|
|
param.put("end_date", endDate);
|
|
|
param.put("advertiser_id", advertiserId);
|
|
|
- param.put("report_dims", "adScene");
|
|
|
+ param.put("report_dims", Arrays.asList("adScene"));
|
|
|
param.put("temporal_granularity", "DAILY");
|
|
|
Integer page_size = 2000;
|
|
|
param.put("page_size", page_size);
|
|
|
@@ -402,7 +403,7 @@ public class KuaishouUnitReportDailyServiceImpl extends ServiceImpl<KuaishouUnit
|
|
|
param.put("start_date", startDate);
|
|
|
param.put("end_date", endDate);
|
|
|
param.put("advertiser_id", advertiserId);
|
|
|
- param.put("report_dims", "placementType");
|
|
|
+ param.put("report_dims", Arrays.asList("placementType"));
|
|
|
param.put("temporal_granularity", "DAILY");
|
|
|
Integer page_size = 2000;
|
|
|
param.put("page_size", page_size);
|