|
@@ -32,9 +32,9 @@ public class BytedanceVideoReportServiceImpl implements IBytedanceVideoReportSer
|
|
|
IBaseReportBytedanceVideoDailyService baseReportBytedanceVideoDailyService;
|
|
|
|
|
|
@Override
|
|
|
- public PageInfo<JSONObject> getVideoReportBy(JSONArray accountIds, String startDate, String endDate, String filed, String target, String order, String clip, String shot, String plan, int pageSize, int pageNo) {
|
|
|
+ public PageInfo<JSONObject> getVideoReportBy(JSONArray accountIds, String startDate, String endDate, String filed, String target, String order, String clip, String shot, String plan,String leader, int pageSize, int pageNo) {
|
|
|
PageHelper.startPage(pageNo,pageSize);
|
|
|
- List<JSONObject> jsonObjectList=bytedanceVideoReportMapper.queryVideoReportBy(accountIds,startDate,endDate,filed,target,order,clip,shot,plan);
|
|
|
+ List<JSONObject> jsonObjectList=bytedanceVideoReportMapper.queryVideoReportBy(accountIds,startDate,endDate,filed,target,order,clip,shot,plan,leader);
|
|
|
return new PageInfo<>(jsonObjectList);
|
|
|
}
|
|
|
|
|
@@ -44,8 +44,8 @@ public class BytedanceVideoReportServiceImpl implements IBytedanceVideoReportSer
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public List<JSONObject> exportExcelReportBy(JSONArray accountIds, String startDate, String endDate, String filed, String target, String order, String clip, String shot, String plan) {
|
|
|
- return bytedanceVideoReportMapper.queryVideoReportBy(accountIds,startDate,endDate,filed,target,order,clip,shot,plan);
|
|
|
+ public List<JSONObject> exportExcelReportBy(JSONArray accountIds, String startDate, String endDate, String filed, String target, String order, String clip, String shot, String plan, String leader) {
|
|
|
+ return bytedanceVideoReportMapper.queryVideoReportBy(accountIds,startDate,endDate,filed,target,order,clip,shot,plan,leader);
|
|
|
}
|
|
|
|
|
|
@Override
|