VegasCpaReportDTO.php 799 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * 数据列表
  4. * @author auto create
  5. */
  6. class VegasCpaReportDTO
  7. {
  8. /**
  9. * 统计日期(统计活动期内,截止 统计日期 的数据)
  10. **/
  11. public $biz_date;
  12. /**
  13. * 活动相关数据信息
  14. **/
  15. public $ext_info;
  16. /**
  17. * 媒体三段式id,当查询数据为pid维度时返回该字段
  18. **/
  19. public $pid;
  20. /**
  21. * 数据类型:1预估 2结算
  22. **/
  23. public $query_type;
  24. /**
  25. * rid,当查询数据为rid维度时返回该字段
  26. **/
  27. public $relation_id;
  28. /**
  29. * 奖励金额;按入参是预估/结算,区分获得金额为预估or可结算结果;
  30. **/
  31. public $reward_amount;
  32. /**
  33. * 符合奖励要求的累计用户数;按入参是预估/结算,区分用户数为预估or可结算结果;
  34. **/
  35. public $union30d_lx_uv;
  36. }
  37. ?>