|
@@ -356,6 +356,7 @@ public class BytedanceAdvertiserHourlyReport {
|
|
|
@Excel(name = "次留数", width = 15)
|
|
|
@ApiModelProperty(value = "次留数")
|
|
|
private Long nextDayOpen;
|
|
|
+
|
|
|
/**
|
|
|
* 次留率
|
|
|
*/
|
|
@@ -369,6 +370,18 @@ public class BytedanceAdvertiserHourlyReport {
|
|
|
@ApiModelProperty(value = "次留成本")
|
|
|
private BigDecimal nextDayOpenCost;
|
|
|
/**
|
|
|
+ * 应用下载广告数据-次留数
|
|
|
+ */
|
|
|
+ private Long attributionNextDayOpenCnt;
|
|
|
+ /**
|
|
|
+ * 应用下载广告数据-次留成本
|
|
|
+ */
|
|
|
+ private BigDecimal attributionNextDayOpenCost;
|
|
|
+ /**
|
|
|
+ * 应用下载广告数据-次留率
|
|
|
+ */
|
|
|
+ private BigDecimal attributionNextDayOpenRate;
|
|
|
+ /**
|
|
|
* createTime
|
|
|
*/
|
|
|
@ApiModelProperty(value = "createTime")
|
|
@@ -493,6 +506,18 @@ public class BytedanceAdvertiserHourlyReport {
|
|
|
if (null != getNextDayOpenRate) {
|
|
|
this.nextDayOpenRate = getNextDayOpenRate;
|
|
|
}
|
|
|
+ Long attributionNextDayOpenCnt = data.getLong("attribution_next_day_open_cnt");
|
|
|
+ if (null != attributionNextDayOpenCnt) {
|
|
|
+ this.attributionNextDayOpenCnt = attributionNextDayOpenCnt;
|
|
|
+ }
|
|
|
+ BigDecimal attributionNextDayOpenCost = data.getBigDecimal("attribution_next_day_open_cost");
|
|
|
+ if (null != attributionNextDayOpenCost) {
|
|
|
+ this.attributionNextDayOpenCost = attributionNextDayOpenCost;
|
|
|
+ }
|
|
|
+ BigDecimal attributionNextDayOpenRate = data.getBigDecimal("attribution_next_day_open_rate");
|
|
|
+ if (null != attributionNextDayOpenRate) {
|
|
|
+ this.attributionNextDayOpenRate = attributionNextDayOpenRate;
|
|
|
+ }
|
|
|
Long getMapSearch = data.getLong("map_search");
|
|
|
if (null != getMapSearch) {
|
|
|
this.mapSearch = getMapSearch;
|