| 123456789101112131415161718192021222324252627282930 |
- <?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_follow}}".
- *
- * @property $id int
- * @property $store_id int(11) NOT NULL DEFAULT '0',
- * @property $anchor_id int(11) NOT NULL COMMENT '主播ID',
- * @property $user_id int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',
- */
- class LiveFollow extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%live_follow}}';
- }
- }
|