|
@@ -255,7 +255,17 @@ public class KuaiShouMaterialControer {
|
|
|
if (Check.isNull(videoCnt)) {
|
|
|
throw new Exception("请输入查询条数");
|
|
|
}
|
|
|
+ String startTime = requestJson.getString("startTime");
|
|
|
+ if (Check.isNull(startTime)) {
|
|
|
+ throw new Exception("请输入查询开始时间");
|
|
|
+ }
|
|
|
+ String endTime = requestJson.getString("endTime");
|
|
|
+ if (Check.isNull(endTime)) {
|
|
|
+ throw new Exception("请输入查询结束时间");
|
|
|
+ }
|
|
|
Map<String, Object> requestMap = new HashMap<>();
|
|
|
+ requestMap.put("startTime", startTime);
|
|
|
+ requestMap.put("endTime", endTime);
|
|
|
requestMap.put("accountId", accountId);
|
|
|
requestMap.put("creativeCount", 0);
|
|
|
requestMap.put("videoCnt", videoCnt);
|