| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * This is the model class for table "{{%user_bind_log}}".
- *
- * @property int $id
- * @property int $user_id
- * @property int $parent_id
- * @property int $bind_time
- */
- class UserBindLog extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%user_bind_log}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'user_id','parent_id','bind_time'], 'integer']
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => "ID主键",
- 'user_id' => "用户ID",
- 'parent_id' => "临时上级ID",
- 'bind_time' => "绑定时间",
- ];
- }
- }
|