| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- namespace app\model\blue;
- use app\extra\basic\Model;
- /**
- * @property integer $id (主键)
- * @property mixed $openid
- * @property string $avatar_uri
- * @property string $nick_name
- * @property mixed $job_id
- * @property mixed $author_id
- * @property string $duration 视频秒数
- * @property integer $item_id 视频ID
- * @property string $title 视频标题
- * @property integer $time_agg_data_10006 整体消耗
- * @property integer $time_agg_data_10010 视频播放数
- * @property integer $time_agg_data_10014 视频完播率
- * @property integer $time_agg_data_10035 整体消耗-推商品
- * @property integer $time_agg_data_10036 整体消费-推直播
- * @property integer $time_agg_data_10057 服务商预估总收益-推商品
- * @property integer $time_agg_data_10056 服务商预估总收益-推商品
- * @property integer $time_agg_data_10058 服务商预估总收益
- * @property integer $time_agg_data_10059 达人预估投放分成收益-推直播
- * @property integer $time_agg_data_10060 达人预估投放分成收益
- * @property integer $time_agg_data_10061 达人预估投放分成收益-推商品
- * @property integer $indicator_agg_data_20021 达人预估收益
- * @property integer $indicator_agg_data_20022 达人已结算收益
- * @property integer $indicator_agg_data_20020 达人已结算投放分成收益-推直播
- * @property integer $indicator_agg_data_20019 达人已结算投放分成收益-推商品
- * @property integer $indicator_agg_data_20016 服务商已结算收益-推直播
- * @property integer $indicator_agg_data_20015 服务商已结算收益-推商品
- * @property integer $indicator_agg_data_20011 服务商已结算收益
- * @property mixed $day
- * @property mixed $month
- */
- class BlueTaskRevenue extends Model
- {
- /**
- * The connection name for the model.
- *
- * @var string|null
- */
- protected $connection = 'mysql';
-
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected string $table = "blue_task_revenue";
-
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected string $primaryKey = "id";
-
- /**
- * Indicates if the model should be timestamped.
- *
- * @var bool
- */
- public bool $timestamps = false;
- }
|