This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/common/model/store/Role.php

27 lines
446 B
PHP
Raw Normal View History

2020-04-25 22:20:29 +08:00
<?php
namespace app\common\model\store;
use app\common\model\BaseModel;
/**
* 商家用户角色模型
* Class Role
* @package app\common\model\admin
*/
class Role extends BaseModel
{
protected $name = 'store_role';
/**
* 角色信息
* @param $where
* @return null|static
* @throws \think\exception\DbException
*/
public static function detail($where)
{
return self::get($where);
}
}