2023-03-16 16:19:42 +08:00

23 lines
457 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare (strict_types = 1);
/**
* 用户角色 model
* 说明: 店铺类型 相关(不同类型需要不同的保证金)
* @author刘孝全
* @emailq8197264@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';
}