UserRemote.php
759 字节
<?php
/**
+-----------------------------------------------------------------------------------------------------------------------
* 模型层:远程用户 模型类
+-----------------------------------------------------------------------------------------------------------------------
*
* PHP version 7
*
* @category App\Models\User
* @package App\Models\User
* @author Richer <yangzi1028@163.com>
* @date 2020年12月28日09:25:20
* @copyright 2020-2022 Richer (http://www.Richer.com/)
* @license http://www.Richer.com/ License
* @link http://www.Richer.com/
*/
namespace App\Models\User;
/**
* Class UserRemote
* @package App\Models\User
*/
class UserRemote extends User
{
protected $connection = 'mysql_remote';
}