LiveFollow.php 719 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. namespace app\models;
  8. use Yii;
  9. use yii\behaviors\TimestampBehavior;
  10. use yii\db\ActiveRecord;
  11. /**
  12. * This is the model class for table "{{%live_follow}}".
  13. *
  14. * @property $id int
  15. * @property $store_id int(11) NOT NULL DEFAULT '0',
  16. * @property $anchor_id int(11) NOT NULL COMMENT '主播ID',
  17. * @property $user_id int(11) NOT NULL DEFAULT '0' COMMENT '用户ID',
  18. */
  19. class LiveFollow extends \yii\db\ActiveRecord
  20. {
  21. /**
  22. * @inheritdoc
  23. */
  24. public static function tableName()
  25. {
  26. return '{{%live_follow}}';
  27. }
  28. }