You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
295 B
17 lines
295 B
<?php
|
|
|
|
namespace app\common\model\store;
|
|
|
|
use app\common\model\BaseModel;
|
|
|
|
/**
|
|
* 商家用户角色权限关系模型
|
|
* Class RoleAccess
|
|
* @package app\common\model\admin
|
|
*/
|
|
class RoleAccess extends BaseModel
|
|
{
|
|
protected $name = 'store_role_access';
|
|
protected $updateTime = false;
|
|
|
|
}
|