|
@@ -1,6 +1,5 @@
|
|
|
package cn.com.ctop.kuaishou.modules.report.entity;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
@@ -8,6 +7,7 @@ import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
|
|
|
@Data
|
|
|
@TableName("ctop_kuaishou_report_daily_account")
|
|
@@ -50,12 +50,73 @@ public class KuaishouReportDailyAccount implements Serializable {
|
|
|
private Long block;
|
|
|
@JsonProperty
|
|
|
private Long negative;
|
|
|
+ @JsonProperty
|
|
|
+ private Long submit;
|
|
|
@JsonProperty("download_started")
|
|
|
private Long downloadStarted;
|
|
|
@JsonProperty("download_completed")
|
|
|
private Long downloadCompleted;
|
|
|
@JsonProperty
|
|
|
private Long activation;
|
|
|
+
|
|
|
@JsonProperty
|
|
|
- private Long submit;
|
|
|
+ private BigDecimal photoClickRatio;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal actionRatio;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal impression1kCost;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal photoClickCost;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal actionCost;
|
|
|
+ @JsonProperty
|
|
|
+ private Long eventPayFirstDay;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventPayFirstDayRoi;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventPay;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventPayPurchaseAmount;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventPayRoi;
|
|
|
+ @JsonProperty
|
|
|
+ private Long eventRegister;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventRegisterCost;
|
|
|
+ @JsonProperty
|
|
|
+ private Long eventJinJianApp;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventJinJianAppCost;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventPayPurchaseAmountFirstDay;
|
|
|
+ @JsonProperty
|
|
|
+ private Long eventCreditGrantApp;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventCreditGrantAppCost;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventCreditGrantAppRatio;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventOrderPaid;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventOrderPaidPurchaseAmount;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventOrderPaidCost;
|
|
|
+ @JsonProperty
|
|
|
+ private Long formCount;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal formCost;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal formActionRatio;
|
|
|
+ @JsonProperty
|
|
|
+ private Long eventJinJianLandingPage;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventJinJianLandingPageCost;
|
|
|
+ @JsonProperty
|
|
|
+ private Long eventCreditGrantLandingPage;
|
|
|
+ @JsonProperty
|
|
|
+ private BigDecimal eventCreditGrantLandingPageCost;
|
|
|
+ @JsonProperty
|
|
|
+ private Date createTime;
|
|
|
+ @JsonProperty
|
|
|
+ private Date updateTime;
|
|
|
}
|