* +---------------------------------------------------------------------- */ namespace App\Http\Model\Cloud; use App\Http\Model\Admin\Admin; use App\Http\Model\BaseModel; /** * 云盘文件分享. */ class CloudShare extends BaseModel { public $timestamps = false; /** * 表名. * @var string */ protected $table = 'folder_share'; /** * 主键. * @var string */ protected $primaryKey = 'id'; public function user() { return $this->hasOne(Admin::class, 'id', 'user_id'); } public function auth() { return $this->hasOne(CloudAuth::class, 'id', 'auth_id'); } }