代码功能更新

This commit is contained in:
root
2025-05-18 07:29:01 +00:00
commit 12b03531c5
2083 changed files with 695218 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace app\service\api;
use think\Facade;
/**
* Api用户服务门面
* @package plugin\core\service
* @method static mixed init($token) 初始化
* @method static mixed getError() 获取错误信息
* @method static mixed emailRegLogin($param) 邮箱密码注册登录
* @method static mixed logout() 退出登录
* @method static mixed getUserInfo() 获取登录用户信息
* @method static mixed getUser() 获取User模型
* @method static mixed isLogin() 获取登录状态
* @method static mixed getToken() 获取token
* @method static mixed getAllowFields() 允许输出的字段
*/
class MemberServiceFacade extends Facade
{
protected static function getFacadeClass()
{
return Member::class;
}
}