| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%user_views}}".
- *
- * @property int $id
- * @property int|null $store_id
- * @property int|null $user_id
- * @property int|null $goods_id 商品id
- * @property int|null $visitors 访客数
- * @property int|null $views 浏览量
- * @property string|null $goods_type 秒杀ms拼团pt预约yy砍价bargain
- * @property int|null $updated_at 更新时间
- */
- class UserViews extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%user_views}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['store_id', 'user_id', 'goods_id', 'visitors', 'views', 'updated_at'], 'integer'],
- [['goods_type'], 'string', 'max' => 255],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'store_id' => 'Store ID',
- 'user_id' => 'User ID',
- 'goods_id' => '商品id',
- 'visitors' => '访客数',
- 'views' => '浏览量',
- 'goods_type' => '秒杀ms拼团pt预约yy砍价bargain',
- 'updated_at' => '更新时间',
- ];
- }
- }
|