| 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_collect}}".
- *
- * @property int $id
- * @property string $mobile 手机号
- * @property int $collect_id 收藏id
- * @property int $type 收藏类型
- * @property int $is_delete
- * @property int $created_at
- * @property int $updated_at
- */
- class UserCollect extends \yii\db\ActiveRecord
- {
- const TYPE_STORE = 0; // 店铺
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%user_collect}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['mobile', 'collect_id', 'type', 'is_delete'], 'integer'],
- [['mobile'], 'string']
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'mobile' => '手机号',
- 'collect_id' => '收藏id',
- 'type' => '类型:默认:0(店铺)',
- 'is_delete' => '是否删除',
- 'created_at' => '创建时间',
- 'updated_at' => '更新时间'
- ];
- }
- }
|