|
@@ -320,7 +320,7 @@ public class ByteDanceVideoReportDailyController {
|
|
|
//循环
|
|
|
for(String column:columns){
|
|
|
|
|
|
- if( column.equals("videoU")){
|
|
|
+ if( "videoU".equals(column)){
|
|
|
continue;
|
|
|
}
|
|
|
|
|
@@ -329,7 +329,7 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// continue;
|
|
|
//}
|
|
|
//
|
|
|
- if( column.equals("projectName")){
|
|
|
+ if( "projectName".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getProjectName() ); //
|
|
|
continue;
|
|
|
}
|
|
@@ -344,82 +344,82 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// continue;
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("statDatetime")){
|
|
|
+ if( "statDatetime".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(dateDTO.getStartDate() + " ~ " + dateDTO.getEndDate() ); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("cost")){
|
|
|
+ if( "cost".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getCost().setScale(2,BigDecimal.ROUND_HALF_UP) ); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("signature")){
|
|
|
+ if( "signature".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getSignature() ); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("url")){
|
|
|
+ if( "url".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getVideoUrl() ); //下载的时候链接转换成头条的链接
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("materialName")){
|
|
|
+ if( "materialName".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getMaterialName() ); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("appType")){
|
|
|
+ if( "appType".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getAppType() ); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("clickMaterial")){
|
|
|
+ if( "clickMaterial".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getClickMaterial() ); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("play25FeedBreakRate")){
|
|
|
+ if( "play25FeedBreakRate".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getPlay25FeedBreakRate().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%" ); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("playOverRate")){
|
|
|
+ if( "playOverRate".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getPlayOverRate().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%" ); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("convertRate")){
|
|
|
+ if( "convertRate".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getConvertRate().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%" ); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("active")){
|
|
|
+ if( "active".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getActive()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("downloadFinish")){
|
|
|
+ if( "downloadFinish".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getDownloadFinish()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("downloadStart")){
|
|
|
+ if( "downloadStart".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getDownloadStart()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("installFinish")){
|
|
|
+ if( "installFinish".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getInstallFinish()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("register")){
|
|
|
+ if( "register".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getRegister()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("payCount")){
|
|
|
+ if( "payCount".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getPayCount()); //
|
|
|
continue;
|
|
|
}
|
|
@@ -454,7 +454,7 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// continue;
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("form")){
|
|
|
+ if( "form".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getForm()); //
|
|
|
continue;
|
|
|
}
|
|
@@ -525,37 +525,37 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// continue;
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("totalPlay")){
|
|
|
+ if( "totalPlay".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getTotalPlay()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("validPlay")){
|
|
|
+ if( "validPlay".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getValidPlay()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("wifiPlay")){
|
|
|
+ if( "wifiPlay".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getWifiPlay()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("play25FeedBreak")){
|
|
|
+ if( "play25FeedBreak".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getPlay25FeedBreak()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("play50FeedBreak")){
|
|
|
+ if( "play50FeedBreak".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getPlay50FeedBreak()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("play75FeedBreak")){
|
|
|
+ if( "play75FeedBreak".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getPlay75FeedBreak()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("play100FeedBreak")){
|
|
|
+ if( "play100FeedBreak".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getPlay100FeedBreak()); //
|
|
|
continue;
|
|
|
}
|
|
@@ -575,7 +575,7 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// continue;
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("shareMaterial")){
|
|
|
+ if( "shareMaterial".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getShowMaterial()); //
|
|
|
continue;
|
|
|
}
|
|
@@ -585,7 +585,7 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// continue;
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("follow")){
|
|
|
+ if( "follow".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getFollow()); //
|
|
|
continue;
|
|
|
}
|
|
@@ -605,27 +605,27 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// continue;
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("nextDayOpen")){
|
|
|
+ if( "nextDayOpen".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getNextDayOpen()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("nextDayOpenRate")){
|
|
|
+ if( "nextDayOpenRate".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getNextDayOpenRate().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%" ); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("nextDayOpenCost")){
|
|
|
+ if( "nextDayOpenCost".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getNextDayOpenCost().setScale(2,BigDecimal.ROUND_HALF_UP)); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("activePayAmount")){
|
|
|
+ if( "activePayAmount".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getActivePayAmount()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("validPlayCost")){
|
|
|
+ if( "validPlayCost".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getValidPlayCost().setScale(2,BigDecimal.ROUND_HALF_UP)); //
|
|
|
continue;
|
|
|
}
|
|
@@ -635,12 +635,12 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// continue;
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("convertMaterial")){
|
|
|
+ if( "convertMaterial".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getConvertMaterial()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("activePayCost")){
|
|
|
+ if( "activePayCost".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getActivePayCost()==null?0:sum.getActivePayCost().setScale(2,BigDecimal.ROUND_HALF_UP)); //
|
|
|
continue;
|
|
|
}
|
|
@@ -650,7 +650,7 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// continue;
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("cpc")){
|
|
|
+ if( "cpc".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getCpc().setScale(2,BigDecimal.ROUND_HALF_UP)); //
|
|
|
continue;
|
|
|
}
|
|
@@ -660,78 +660,78 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// continue;
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("ctr")){
|
|
|
+ if( "ctr".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getCtr().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%"); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("cpm")){
|
|
|
+ if( "cpm".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getCpm()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("wifiPlayRate")){
|
|
|
+ if( "wifiPlayRate".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getWifiPlayRate().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%"); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("likeMaterial")){
|
|
|
+ if( "likeMaterial".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getLikeMaterial()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("activeCost")){
|
|
|
+ if( "activeCost".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getActiveCost().setScale(2,BigDecimal.ROUND_HALF_UP)); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("gameAddictionCost")){
|
|
|
+ if( "gameAddictionCost".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getGameAddictionCost().setScale(2,BigDecimal.ROUND_HALF_UP)); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("gameAddiction")){
|
|
|
+ if( "gameAddiction".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getGameAddiction()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("activeRate")){
|
|
|
+ if( "activeRate".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getActiveRate().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%"); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("gameAddictionRate")){
|
|
|
+ if( "gameAddictionRate".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getGameAddictionRate().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%"); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("activeRegisterRate")){
|
|
|
+ if( "activeRegisterRate".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getActiveRegisterRate().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%"); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("downloadFinishCost")){
|
|
|
+ if( "downloadFinishCost".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getDownloadFinishCost().setScale(2,BigDecimal.ROUND_HALF_UP)); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("activeRegisterCost")){
|
|
|
+ if( "activeRegisterCost".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getActiveRegisterCost().setScale(2,BigDecimal.ROUND_HALF_UP)); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("showMaterial")){
|
|
|
+ if( "showMaterial".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getShowMaterial()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
|
|
|
- if( column.equals("downloadFinishRate")){
|
|
|
+ if( "downloadFinishRate".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getDownloadFinishRate().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%"); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("installFinishRate")){
|
|
|
+ if( "installFinishRate".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getInstallFinishRate().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%"); //
|
|
|
continue;
|
|
|
}
|
|
@@ -746,12 +746,12 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// continue;
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("playOver")){
|
|
|
+ if( "playOver".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getPlayOver()); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("downloadStartCost")){
|
|
|
+ if( "downloadStartCost".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getDownloadStartCost().setScale(2,BigDecimal.ROUND_HALF_UP)); //
|
|
|
continue;
|
|
|
}
|
|
@@ -761,32 +761,32 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// continue;
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("validPlayRate")){
|
|
|
+ if( "validPlayRate".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getValidPlayRate().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%"); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("averagePlayTimePerPlay")){
|
|
|
+ if( "averagePlayTimePerPlay".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getAveragePlayTimePerPlay().setScale(2,BigDecimal.ROUND_HALF_UP)); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("convertCost")){
|
|
|
+ if( "convertCost".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getConvertCost().setScale(2,BigDecimal.ROUND_HALF_UP)); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("installFinishCost")){
|
|
|
+ if( "installFinishCost".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getInstallFinishCost().setScale(2,BigDecimal.ROUND_HALF_UP)); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("downloadStartRate")){
|
|
|
+ if( "downloadStartRate".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getDownloadStartRate().multiply(new BigDecimal("100")).setScale(2,BigDecimal.ROUND_HALF_UP) + "%"); //
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- if( column.equals("companyId")){
|
|
|
+ if( "companyId".equals(column)){
|
|
|
ByteDanceVideoReportDaily.add(sum.getCompanyId()); //
|
|
|
continue;
|
|
|
}
|
|
@@ -806,7 +806,7 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// listHeaders.add("projectId");
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("projectName")){
|
|
|
+ if( "projectName".equals(column)){
|
|
|
listHeaders.add("项目名称");
|
|
|
}
|
|
|
|
|
@@ -818,23 +818,23 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// listHeaders.add("客户");
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("statDatetime")){
|
|
|
+ if( "statDatetime".equals(column)){
|
|
|
listHeaders.add("时间");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("cost")){
|
|
|
+ if( "cost".equals(column)){
|
|
|
listHeaders.add("消耗");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("signature")){
|
|
|
+ if( "signature".equals(column)){
|
|
|
listHeaders.add("视频id");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("url")){
|
|
|
+ if( "url".equals(column)){
|
|
|
listHeaders.add("视频链接");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("materialName")){
|
|
|
+ if( "materialName".equals(column)){
|
|
|
listHeaders.add("视频描述");
|
|
|
} /////
|
|
|
|
|
@@ -842,43 +842,43 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// listHeaders.add("媒体");
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("clickMaterial")){
|
|
|
+ if( "clickMaterial".equals(column)){
|
|
|
listHeaders.add("点击数");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("play25FeedBreakRate")){
|
|
|
+ if( "play25FeedBreakRate".equals(column)){
|
|
|
listHeaders.add("25%进度播放率");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("playOverRate")){
|
|
|
+ if( "playOverRate".equals(column)){
|
|
|
listHeaders.add("播完率");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("convertRate")){
|
|
|
+ if( "convertRate".equals(column)){
|
|
|
listHeaders.add("转化率");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("active")){
|
|
|
+ if( "active".equals(column)){
|
|
|
listHeaders.add("激活数");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("downloadFinish")){
|
|
|
+ if( "downloadFinish".equals(column)){
|
|
|
listHeaders.add("安卓下载完成数");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("downloadStart")){
|
|
|
+ if( "downloadStart".equals(column)){
|
|
|
listHeaders.add("安卓下载开始数");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("installFinish")){
|
|
|
+ if( "installFinish".equals(column)){
|
|
|
listHeaders.add("安卓安装完成");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("register")){
|
|
|
+ if( "register".equals(column)){
|
|
|
listHeaders.add("注册数");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("payCount")){
|
|
|
+ if( "payCount".equals(column)){
|
|
|
listHeaders.add("付费次数");
|
|
|
} /////
|
|
|
|
|
@@ -906,7 +906,7 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// listHeaders.add("点击电话按钮");
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("form")){
|
|
|
+ if( "form".equals(column)){
|
|
|
listHeaders.add("表单提交");
|
|
|
} /////
|
|
|
|
|
@@ -963,31 +963,31 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// listHeaders.add("有效咨询");
|
|
|
//} /////
|
|
|
|
|
|
- if( column.equals("totalPlay")){
|
|
|
+ if( "totalPlay".equals(column)){
|
|
|
listHeaders.add("播放数");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("validPlay")){
|
|
|
+ if( "validPlay".equals(column)){
|
|
|
listHeaders.add("有效播放数");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("wifiPlay")){
|
|
|
+ if( "wifiPlay".equals(column)){
|
|
|
listHeaders.add("wifi播放");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("play25FeedBreak")){
|
|
|
+ if( "play25FeedBreak".equals(column)){
|
|
|
listHeaders.add("25%进度播放数");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("play50FeedBreak")){
|
|
|
+ if( "play50FeedBreak".equals(column)){
|
|
|
listHeaders.add("50%进度播放数");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("play75FeedBreak")){
|
|
|
+ if( "play75FeedBreak".equals(column)){
|
|
|
listHeaders.add("75%进度播放数");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("play100FeedBreak")){
|
|
|
+ if( "play100FeedBreak".equals(column)){
|
|
|
listHeaders.add("100%进度播放数");
|
|
|
}
|
|
|
|
|
@@ -1003,7 +1003,7 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// listHeaders.add("附加创意表单按钮点击");
|
|
|
//} /////
|
|
|
|
|
|
- if( column.equals("shareMaterial")){
|
|
|
+ if( "shareMaterial".equals(column)){
|
|
|
listHeaders.add("分享数");
|
|
|
} /////
|
|
|
|
|
@@ -1011,7 +1011,7 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// listHeaders.add("评论提交数");
|
|
|
//} /////
|
|
|
|
|
|
- if( column.equals("follow")){
|
|
|
+ if( "follow".equals(column)){
|
|
|
listHeaders.add("新增关注数");
|
|
|
} /////
|
|
|
|
|
@@ -1027,23 +1027,23 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// listHeaders.add("音乐查看数");
|
|
|
//} /////
|
|
|
|
|
|
- if( column.equals("nextDayOpen")){
|
|
|
+ if( "nextDayOpen".equals(column)){
|
|
|
listHeaders.add("次留数");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("nextDayOpenRate")){
|
|
|
+ if( "nextDayOpenRate".equals(column)){
|
|
|
listHeaders.add("次留率");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("nextDayOpenCost")){
|
|
|
+ if( "nextDayOpenCost".equals(column)){
|
|
|
listHeaders.add("次留成本");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("activePayAmount")){
|
|
|
+ if( "activePayAmount".equals(column)){
|
|
|
listHeaders.add("付费次数");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("validPlayCost")){
|
|
|
+ if( "validPlayCost".equals(column)){
|
|
|
listHeaders.add("有效播放成本");
|
|
|
} /////
|
|
|
|
|
@@ -1051,11 +1051,11 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// listHeaders.add("附加创意卡券领取");
|
|
|
//} /////
|
|
|
|
|
|
- if( column.equals("convertMaterial")){
|
|
|
+ if( "convertMaterial".equals(column)){
|
|
|
listHeaders.add("转化数");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("activePayCost")){
|
|
|
+ if( "activePayCost".equals(column)){
|
|
|
listHeaders.add("付费成本");
|
|
|
} /////
|
|
|
|
|
@@ -1063,7 +1063,7 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// listHeaders.add("下载开始");
|
|
|
//} ////
|
|
|
|
|
|
- if( column.equals("cpc")){
|
|
|
+ if( "cpc".equals(column)){
|
|
|
listHeaders.add("平均点击单价");
|
|
|
}
|
|
|
|
|
@@ -1071,63 +1071,63 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// listHeaders.add("POI点击数");
|
|
|
//}
|
|
|
|
|
|
- if( column.equals("ctr")){
|
|
|
+ if( "ctr".equals(column)){
|
|
|
listHeaders.add("点击率");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("cpm")){
|
|
|
+ if( "cpm".equals(column)){
|
|
|
listHeaders.add("平均千次展现费用");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("wifiPlayRate")){
|
|
|
+ if( "wifiPlayRate".equals(column)){
|
|
|
listHeaders.add("WiFi播放占比");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("likeMaterial")){
|
|
|
+ if( "likeMaterial".equals(column)){
|
|
|
listHeaders.add("点赞数");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("activeCost")){
|
|
|
+ if( "activeCost".equals(column)){
|
|
|
listHeaders.add("激活成本");
|
|
|
} ////
|
|
|
|
|
|
- if( column.equals("gameAddictionCost")){
|
|
|
+ if( "gameAddictionCost".equals(column)){
|
|
|
listHeaders.add("关键行为成本");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("gameAddiction")){
|
|
|
+ if( "gameAddiction".equals(column)){
|
|
|
listHeaders.add("关键行为数");
|
|
|
} ////
|
|
|
|
|
|
- if( column.equals("activeRate")){
|
|
|
+ if( "activeRate".equals(column)){
|
|
|
listHeaders.add("激活率");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("gameAddictionRate")){
|
|
|
+ if( "gameAddictionRate".equals(column)){
|
|
|
listHeaders.add("关键行为率");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("activeRegisterRate")){
|
|
|
+ if( "activeRegisterRate".equals(column)){
|
|
|
listHeaders.add("注册率");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("downloadFinishCost")){
|
|
|
+ if( "downloadFinishCost".equals(column)){
|
|
|
listHeaders.add("安卓下载完成成本");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("activeRegisterCost")){
|
|
|
+ if( "activeRegisterCost".equals(column)){
|
|
|
listHeaders.add("注册成本");
|
|
|
} ////
|
|
|
|
|
|
- if( column.equals("showMaterial")){
|
|
|
+ if( "showMaterial".equals(column)){
|
|
|
listHeaders.add("展示数");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("downloadFinishRate")){
|
|
|
+ if( "downloadFinishRate".equals(column)){
|
|
|
listHeaders.add("安卓下载完成率");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("installFinishRate")){
|
|
|
+ if( "installFinishRate".equals(column)){
|
|
|
listHeaders.add("安卓安装完成率");
|
|
|
}
|
|
|
|
|
@@ -1139,35 +1139,35 @@ public class ByteDanceVideoReportDailyController {
|
|
|
// listHeaders.add("卡券页领取");
|
|
|
//} /////
|
|
|
|
|
|
- if( column.equals("playOver")){
|
|
|
+ if( "playOver".equals(column)){
|
|
|
listHeaders.add("完播数");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("downloadStartCost")){
|
|
|
+ if( "downloadStartCost".equals(column)){
|
|
|
listHeaders.add("安卓下载开始成本");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("message")){
|
|
|
+ if( "message".equals(column)){
|
|
|
listHeaders.add("短信咨询");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("validPlayRate")){
|
|
|
+ if( "validPlayRate".equals(column)){
|
|
|
listHeaders.add("有效播放率");
|
|
|
} /////
|
|
|
|
|
|
- if( column.equals("averagePlayTimePerPlay")){
|
|
|
+ if( "averagePlayTimePerPlay".equals(column)){
|
|
|
listHeaders.add("平均单次播放时长");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("convertCost")){
|
|
|
+ if( "convertCost".equals(column)){
|
|
|
listHeaders.add("转化成本");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("installFinishCost")){
|
|
|
+ if( "installFinishCost".equals(column)){
|
|
|
listHeaders.add("安卓安装完成成本");
|
|
|
}
|
|
|
|
|
|
- if( column.equals("downloadStartRate")){
|
|
|
+ if( "downloadStartRate".equals(column)){
|
|
|
listHeaders.add("安卓下载开始率");
|
|
|
} /////
|
|
|
|