Commit 1c8c6517 authored by 秦俊坤's avatar 秦俊坤

新增鉴权相关接口

parent 9d990432
<?php
/**
* Created by PhpStorm.
* User: qjk
* Date: 2022/03/28
* Time: 15:07
*/
namespace Meibuyu\Rpc\Service\Interfaces\User;
interface AuthenticationInterface
{
/**
* 获取对应用户能够看到的菜单
* @param string $name
* @param array $columns
* @return array
*/
public function getMenus($userId): array;
/**
* 获取对应用户的菜单权限
* @param $userId
* @return array
*/
public function getButtons($userId):array;
/**
* 获取对应路由的接口权限结果
* @param $router string 路由名字
* @param $applicationName string 应用名字
* @param $userId integer 用户 ID
* @return bool
*/
public function authByRouter($applicationName, $router, $userId): bool;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment