|
@@ -266,7 +266,7 @@ public class KuaiShouVideoGetController {
|
|
|
String startMonth = DateUtils.formatDate(startMonthStr, "yyyy-MM");
|
|
|
requestMap.put("startMonth", Integer.valueOf(startMonth.replace("-", "")));
|
|
|
requestMap.put("endMonth", Integer.valueOf(endMonth.replace("-", "")));
|
|
|
- kuaiShouReportDailyMaterialService.get3MonthVideo(requestMap);
|
|
|
+ list = kuaiShouReportDailyMaterialService.get3MonthVideo(requestMap);
|
|
|
} else if (costType == 6) { // 近6个月
|
|
|
String endMonth = DateUtils.getNowDate("yyyy-MM");
|
|
|
String nowDate = DateUtils.getNowDate("yyyy-MM-dd");
|
|
@@ -274,7 +274,7 @@ public class KuaiShouVideoGetController {
|
|
|
String startMonth = DateUtils.formatDate(startMonthStr, "yyyy-MM");
|
|
|
requestMap.put("startMonth", Integer.valueOf(startMonth.replace("-", "")));
|
|
|
requestMap.put("endMonth", Integer.valueOf(endMonth.replace("-", "")));
|
|
|
- kuaiShouReportDailyMaterialService.get3MonthVideo(requestMap);
|
|
|
+ list = kuaiShouReportDailyMaterialService.get3MonthVideo(requestMap);
|
|
|
} else if (costType == 7) { // 近12个月
|
|
|
String endMonth = DateUtils.getNowDate("yyyy-MM");
|
|
|
String nowDate = DateUtils.getNowDate("yyyy-MM-dd");
|
|
@@ -282,9 +282,9 @@ public class KuaiShouVideoGetController {
|
|
|
String startMonth = DateUtils.formatDate(startMonthStr, "yyyy-MM");
|
|
|
requestMap.put("startMonth", Integer.valueOf(startMonth.replace("-", "")));
|
|
|
requestMap.put("endMonth", Integer.valueOf(endMonth.replace("-", "")));
|
|
|
- kuaiShouReportDailyMaterialService.get3MonthVideo(requestMap);
|
|
|
+ list = kuaiShouReportDailyMaterialService.get3MonthVideo(requestMap);
|
|
|
} else if (costType == 8) { // 全部
|
|
|
- kuaiShouReportDailyMaterialService.get3MonthVideo(requestMap);
|
|
|
+ list = kuaiShouReportDailyMaterialService.get3MonthVideo(requestMap);
|
|
|
}
|
|
|
|
|
|
|