<?php
// +----------------------------------------------------------------
// | LeisoonCMF V5.0
// +----------------------------------------------------------------
// | Copyright (c) 2016 http://www.leisoon.com All rights reserved.
// +----------------------------------------------------------------
// | Author: websky <web88@qq.com>
// +----------------------------------------------------------------
namespace app\user\model;
use think\Model;
/**
* 会员扩展信息
*/
class UserProfile extends Model {
protected $pk = 'user_id';
/**
* User表相对关联
* @return \think\model\relation\BelongsTo
*/
public function user()
{
return $this->belongsTo('User');
}
}