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