<?php
declare(strict_types=1);
namespace Meibuyu\Rpc\Service\Interfaces\Order;
/**
* @author chentianyu
*/
interface AuthSiteServiceInterface
{
/**
* 获取查看权限的站点,全部权限返回 ALL,否则返回站点数组
* @param $userId
* @return array|string
* @author chentianyu
*/
public function getAuthSiteViewByUserId($userId);
}
-
chentianyu authored9174fef2