23 lines
457 B
PHP
23 lines
457 B
PHP
<?php
|
||
declare (strict_types = 1);
|
||
/**
|
||
* 用户角色 model
|
||
* 说明: 店铺类型 相关(不同类型需要不同的保证金)
|
||
* @author:刘孝全
|
||
* @email:q8197264@126.com
|
||
* @date :2023年03月3日
|
||
*/
|
||
namespace app\common\model\merchant\system\auth;
|
||
|
||
use think\Model;
|
||
|
||
/**
|
||
* @mixin \think\Model
|
||
*/
|
||
class Role extends Model
|
||
{
|
||
protected $connection = 'shop';
|
||
protected $table = 'eb_system_role';
|
||
protected $pk = 'role_id';
|
||
}
|