|
@@ -1,8 +1,8 @@
|
|
package cn.com.ctop.kuaishou.modules.report.entity;
|
|
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.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
-import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
|
|
@@ -10,10 +10,8 @@ import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
|
|
-
|
|
|
|
@Data
|
|
@Data
|
|
@TableName("ctop_kuaishou_report_daily_account")
|
|
@TableName("ctop_kuaishou_report_daily_account")
|
|
-@JsonIgnoreProperties(ignoreUnknown = true)
|
|
|
|
public class KuaishouReportDailyAccount implements Serializable {
|
|
public class KuaishouReportDailyAccount implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId
|
|
@TableId
|
|
@@ -21,163 +19,107 @@ public class KuaishouReportDailyAccount implements Serializable {
|
|
|
|
|
|
private Long accountId;
|
|
private Long accountId;
|
|
|
|
|
|
- @JsonProperty("charge")
|
|
|
|
|
|
+ @JsonProperty("stat_date")
|
|
|
|
+ private String statDate;
|
|
|
|
+
|
|
|
|
+ @JsonProperty
|
|
private BigDecimal charge;
|
|
private BigDecimal charge;
|
|
|
|
|
|
- @JsonProperty("photo_show")
|
|
|
|
|
|
+ @JsonProperty
|
|
private Long photoShow;
|
|
private Long photoShow;
|
|
|
|
|
|
- @JsonProperty("aclick")
|
|
|
|
- private Long aclick;
|
|
|
|
|
|
+ @JsonProperty("photo_click")
|
|
|
|
+ private Long photoClick;
|
|
|
|
|
|
- @JsonProperty("bclick")
|
|
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private Long aclick;
|
|
|
|
+ @JsonProperty
|
|
private Long bclick;
|
|
private Long bclick;
|
|
-
|
|
|
|
- @JsonProperty("photo_share")
|
|
|
|
- private Long photoShare;
|
|
|
|
-
|
|
|
|
- @JsonProperty("photo_comment")
|
|
|
|
- private Long photoComment;
|
|
|
|
-
|
|
|
|
- @JsonProperty("photo_like")
|
|
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private Long share;
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private Long comment;
|
|
|
|
+ @JsonProperty
|
|
private Long photoLike;
|
|
private Long photoLike;
|
|
-
|
|
|
|
- @JsonProperty("follow")
|
|
|
|
|
|
+ @JsonProperty
|
|
private Long follow;
|
|
private Long follow;
|
|
-
|
|
|
|
@JsonProperty("cancel_follow")
|
|
@JsonProperty("cancel_follow")
|
|
private Long cancelFollow;
|
|
private Long cancelFollow;
|
|
-
|
|
|
|
- @JsonProperty("report")
|
|
|
|
|
|
+ @JsonProperty
|
|
private Long report;
|
|
private Long report;
|
|
-
|
|
|
|
- @JsonProperty("block")
|
|
|
|
|
|
+ @JsonProperty
|
|
private Long block;
|
|
private Long block;
|
|
-
|
|
|
|
- @JsonProperty("negative")
|
|
|
|
|
|
+ @JsonProperty
|
|
private Long negative;
|
|
private Long negative;
|
|
-
|
|
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private Long submit;
|
|
@JsonProperty("download_started")
|
|
@JsonProperty("download_started")
|
|
private Long downloadStarted;
|
|
private Long downloadStarted;
|
|
-
|
|
|
|
@JsonProperty("download_completed")
|
|
@JsonProperty("download_completed")
|
|
private Long downloadCompleted;
|
|
private Long downloadCompleted;
|
|
-
|
|
|
|
- @JsonProperty("activation")
|
|
|
|
|
|
+ @JsonProperty
|
|
private Long activation;
|
|
private Long activation;
|
|
|
|
|
|
- @JsonProperty("submit")
|
|
|
|
- private Long submit;
|
|
|
|
-
|
|
|
|
- @JsonProperty("stat_date")
|
|
|
|
- private String statDate;
|
|
|
|
-
|
|
|
|
- @JsonProperty("photo_click")
|
|
|
|
- private Long photoClick;
|
|
|
|
-
|
|
|
|
- @JsonProperty("photo_click_ratio")
|
|
|
|
- private Double photoClickRatio;
|
|
|
|
-
|
|
|
|
- @JsonProperty("action_ratio")
|
|
|
|
- private Double actionRatio;
|
|
|
|
-
|
|
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private BigDecimal photoClickRatio;
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private BigDecimal actionRatio;
|
|
@JsonProperty("impression_1k_cost")
|
|
@JsonProperty("impression_1k_cost")
|
|
|
|
+ @TableField("impression_1k_cost")
|
|
private BigDecimal impression1kCost;
|
|
private BigDecimal impression1kCost;
|
|
-
|
|
|
|
- @JsonProperty("photo_click_cost")
|
|
|
|
|
|
+ @JsonProperty
|
|
private BigDecimal photoClickCost;
|
|
private BigDecimal photoClickCost;
|
|
-
|
|
|
|
- @JsonProperty("action_cost")
|
|
|
|
|
|
+ @JsonProperty
|
|
private BigDecimal actionCost;
|
|
private BigDecimal actionCost;
|
|
-
|
|
|
|
- @JsonProperty("event_pay_first_day")
|
|
|
|
|
|
+ @JsonProperty
|
|
private Long eventPayFirstDay;
|
|
private Long eventPayFirstDay;
|
|
-
|
|
|
|
- @JsonProperty("event_pay_purchase_amount_first_day")
|
|
|
|
- private BigDecimal eventPayPurchaseAmountFirstDay;
|
|
|
|
-
|
|
|
|
- @JsonProperty("event_pay_first_day_roi")
|
|
|
|
- private Double eventPayFirstDayRoi;
|
|
|
|
-
|
|
|
|
- @JsonProperty("event_pay")
|
|
|
|
- private Long eventPay;
|
|
|
|
-
|
|
|
|
- @JsonProperty("event_pay_purchase_amount")
|
|
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private BigDecimal eventPayFirstDayRoi;
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private BigDecimal eventPay;
|
|
|
|
+ @JsonProperty
|
|
private BigDecimal eventPayPurchaseAmount;
|
|
private BigDecimal eventPayPurchaseAmount;
|
|
-
|
|
|
|
- @JsonProperty("event_pay_roi")
|
|
|
|
- private Double eventPayRoi;
|
|
|
|
-
|
|
|
|
- @JsonProperty("event_register")
|
|
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private BigDecimal eventPayRoi;
|
|
|
|
+ @JsonProperty
|
|
private Long eventRegister;
|
|
private Long eventRegister;
|
|
-
|
|
|
|
- @JsonProperty("event_register_cost")
|
|
|
|
|
|
+ @JsonProperty
|
|
private BigDecimal eventRegisterCost;
|
|
private BigDecimal eventRegisterCost;
|
|
-
|
|
|
|
- @JsonProperty("event_register_ratio")
|
|
|
|
- private Double eventRegisterRatio;
|
|
|
|
-
|
|
|
|
- @JsonProperty("event_jin_jian_app")
|
|
|
|
|
|
+ @JsonProperty
|
|
private Long eventJinJianApp;
|
|
private Long eventJinJianApp;
|
|
-
|
|
|
|
- @JsonProperty("event_jin_jian_app_cost")
|
|
|
|
|
|
+ @JsonProperty
|
|
private BigDecimal eventJinJianAppCost;
|
|
private BigDecimal eventJinJianAppCost;
|
|
-
|
|
|
|
- @JsonProperty("event_credit_grant_app")
|
|
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private BigDecimal eventPayPurchaseAmountFirstDay;
|
|
|
|
+ @JsonProperty
|
|
private Long eventCreditGrantApp;
|
|
private Long eventCreditGrantApp;
|
|
-
|
|
|
|
- @JsonProperty("event_credit_grant_app_cost")
|
|
|
|
|
|
+ @JsonProperty
|
|
private BigDecimal eventCreditGrantAppCost;
|
|
private BigDecimal eventCreditGrantAppCost;
|
|
-
|
|
|
|
- @JsonProperty("event_credit_grant_app_ratio")
|
|
|
|
- private Double eventCreditGrantAppRatio;
|
|
|
|
-
|
|
|
|
- @JsonProperty("event_order_paid")
|
|
|
|
- private Long eventOrderPaid;
|
|
|
|
-
|
|
|
|
- @JsonProperty("event_order_paid_purchase_amount")
|
|
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private BigDecimal eventCreditGrantAppRatio;
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private BigDecimal eventOrderPaid;
|
|
|
|
+ @JsonProperty
|
|
private BigDecimal eventOrderPaidPurchaseAmount;
|
|
private BigDecimal eventOrderPaidPurchaseAmount;
|
|
-
|
|
|
|
- @JsonProperty("event_jin_jian_landing_page")
|
|
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private BigDecimal eventOrderPaidCost;
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private Long formCount;
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private BigDecimal formCost;
|
|
|
|
+ @JsonProperty
|
|
|
|
+ private BigDecimal formActionRatio;
|
|
|
|
+ @JsonProperty
|
|
private Long eventJinJianLandingPage;
|
|
private Long eventJinJianLandingPage;
|
|
-
|
|
|
|
- @JsonProperty("event_jin_jian_landing_page_cost")
|
|
|
|
|
|
+ @JsonProperty
|
|
private BigDecimal eventJinJianLandingPageCost;
|
|
private BigDecimal eventJinJianLandingPageCost;
|
|
-
|
|
|
|
- @JsonProperty("event_credit_grant_landing_page")
|
|
|
|
|
|
+ @JsonProperty
|
|
private Long eventCreditGrantLandingPage;
|
|
private Long eventCreditGrantLandingPage;
|
|
-
|
|
|
|
- @JsonProperty("event_credit_grant_landing_page_cost")
|
|
|
|
|
|
+ @JsonProperty
|
|
private BigDecimal eventCreditGrantLandingPageCost;
|
|
private BigDecimal eventCreditGrantLandingPageCost;
|
|
-
|
|
|
|
- @JsonProperty("event_credit_grant_landing_ratio")
|
|
|
|
- private Double eventCreditGrantLandingRatio;
|
|
|
|
-
|
|
|
|
- @JsonProperty("event_next_day_stay_cost")
|
|
|
|
- private BigDecimal eventNextDayStayCost;
|
|
|
|
-
|
|
|
|
- @JsonProperty("event_next_day_stay_ratio")
|
|
|
|
- private Long eventNextDayStayRatio;
|
|
|
|
-
|
|
|
|
- @JsonProperty("form_action_ratio")
|
|
|
|
- private Double formActionRatio;
|
|
|
|
-
|
|
|
|
- @JsonProperty("event_order_paid_cost")
|
|
|
|
- private BigDecimal eventOrderPaidCost;
|
|
|
|
-
|
|
|
|
- @JsonProperty("event_next_day_stay")
|
|
|
|
- private Long eventNextDayStay;
|
|
|
|
-
|
|
|
|
- @JsonProperty("form_cost")
|
|
|
|
- private BigDecimal formCost;
|
|
|
|
-
|
|
|
|
- @JsonProperty("form_count")
|
|
|
|
- private Long formCount;
|
|
|
|
-
|
|
|
|
- @JsonProperty("play_3s_ratio")
|
|
|
|
- private Double play3sRatio;
|
|
|
|
-
|
|
|
|
|
|
+ @JsonProperty
|
|
private Date createTime;
|
|
private Date createTime;
|
|
-
|
|
|
|
|
|
+ @JsonProperty
|
|
private Date updateTime;
|
|
private Date updateTime;
|
|
}
|
|
}
|
|
|
|
+
|