| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\models;
- use Yii;
- use yii\behaviors\TimestampBehavior;
- use yii\db\ActiveRecord;
- /**
- * This is the model class for table "{{%live_anchor}}".
- *
- * @property $id int(11) NOT NULL AUTO_INCREMENT,
- * @property $store_id int(11) NOT NULL DEFAULT '0',
- * @property $user_id int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',
- * @property $is_push int(1) NOT NULL DEFAULT '0' COMMENT '是否在推流',
- * @property $name varchar(255) NOT NULL COMMENT '主播名称',
- * @property $desc varchar(255) NOT NULL COMMENT '主播简介',
- * @property $status tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态:1.审核通过,0.待审核,2.审核未通过',
- * @property $follow_num int(11) NOT NULL DEFAULT '0' COMMENT '关注人数',
- * @property $price decimal(10,2) DEFAULT NULL COMMENT '主播收益',
- * @property $cat_id int(11) NOT NULL COMMENT '主播类型',
- * @property $is_open tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否打开直播 1,打开 0,关闭',
- * @property $is_recommen tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否推荐',
- * @property $is_delete tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除',
- * @property $realname varchar(255) DEFAULT NULL COMMENT '真实姓名',
- * @property $mobile varchar(255) DEFAULT NULL COMMENT '联系电话',
- * @property $add_time int(11) DEFAULT NULL COMMENT '添加时间',
- * @property $status_desc varchar(255) DEFAULT NULL COMMENT '未通过备注',
- * @property $created_at int(11) NULL DEFAULT 0 ,
- * @property $updated_at int(11) NULL DEFAULT 0 ,
- */
- class LiveAnchor extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%live_anchor}}';
- }
- public function behaviors()
- {
- return [
- [
- // 自动更新创建和更新时间
- 'class' => TimestampBehavior::class,
- ]
- ];
- }
- }
|