代码功能更新

This commit is contained in:
root
2025-05-18 07:42:27 +00:00
parent 7fc1d422a1
commit 4a90c41da2
2083 changed files with 695218 additions and 3 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace app\service\api;
use think\Facade;
/**
* Api权限服务门面
* @package app\api\service
* @method static mixed setNoNeedLogin($noNeedLogin) 设置不需要登录的方法名数组
* @method static mixed getNoNeedLogin() 获取无需登录的方法名数组
* @method static mixed needLogin() 获取当前节点是否需要登录
*/
class AuthServiceFacade extends Facade
{
protected static function getFacadeClass()
{
return Auth::class;
}
}