This commit is contained in:
2025-06-25 16:12:51 +08:00
parent dbcc89b8fb
commit 28aec960e2
15 changed files with 2013 additions and 45 deletions

View File

@@ -0,0 +1,25 @@
<?php
namespace App\Services\Base;
class BaseService
{
protected $userId;
protected static $instance;
public function __construct()
{
$token = request()->header('token');
$this->userId = $token;
}
// 单例
public static function getInstance()
{
if (!self::$instance instanceof self) {
self::$instance = new self();
}
return self::$instance;
}
}