AppServiceInterface.php 397 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php
/**
 * Created by PhpStorm.
 * User: zero
 * Date: 2020/3/27
 * Time: 15:03
 */

namespace Meibuyu\Micro\Service\Interfaces;

interface AppServiceInterface
{

    /**
     * 获取当前用户可访问的应用数组
     * @param $user
17
     * @param bool $isSuperAdmin 是否是超级管理员
18 19
     * @return mixed
     */
20
    public function getAccessApps($user, $isSuperAdmin = false);
21
}