BlueTaskRevenue.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. namespace app\model\blue;
  3. use app\extra\basic\Model;
  4. /**
  5. * @property integer $id (主键)
  6. * @property mixed $openid
  7. * @property string $avatar_uri
  8. * @property string $nick_name
  9. * @property mixed $job_id
  10. * @property mixed $author_id
  11. * @property string $duration 视频秒数
  12. * @property integer $item_id 视频ID
  13. * @property string $title 视频标题
  14. * @property integer $time_agg_data_10006 整体消耗
  15. * @property integer $time_agg_data_10010 视频播放数
  16. * @property integer $time_agg_data_10014 视频完播率
  17. * @property integer $time_agg_data_10035 整体消耗-推商品
  18. * @property integer $time_agg_data_10036 整体消费-推直播
  19. * @property integer $time_agg_data_10057 服务商预估总收益-推商品
  20. * @property integer $time_agg_data_10056 服务商预估总收益-推商品
  21. * @property integer $time_agg_data_10058 服务商预估总收益
  22. * @property integer $time_agg_data_10059 达人预估投放分成收益-推直播
  23. * @property integer $time_agg_data_10060 达人预估投放分成收益
  24. * @property integer $time_agg_data_10061 达人预估投放分成收益-推商品
  25. * @property integer $indicator_agg_data_20021 达人预估收益
  26. * @property integer $indicator_agg_data_20022 达人已结算收益
  27. * @property integer $indicator_agg_data_20020 达人已结算投放分成收益-推直播
  28. * @property integer $indicator_agg_data_20019 达人已结算投放分成收益-推商品
  29. * @property integer $indicator_agg_data_20016 服务商已结算收益-推直播
  30. * @property integer $indicator_agg_data_20015 服务商已结算收益-推商品
  31. * @property integer $indicator_agg_data_20011 服务商已结算收益
  32. * @property mixed $day
  33. * @property mixed $month
  34. */
  35. class BlueTaskRevenue extends Model
  36. {
  37. /**
  38. * The connection name for the model.
  39. *
  40. * @var string|null
  41. */
  42. protected $connection = 'mysql';
  43. /**
  44. * The table associated with the model.
  45. *
  46. * @var string
  47. */
  48. protected string $table = "blue_task_revenue";
  49. /**
  50. * The primary key associated with the table.
  51. *
  52. * @var string
  53. */
  54. protected string $primaryKey = "id";
  55. /**
  56. * Indicates if the model should be timestamped.
  57. *
  58. * @var bool
  59. */
  60. public bool $timestamps = false;
  61. }