文本聊天已完成

This commit is contained in:
2025-06-26 15:41:29 +08:00
parent 9f0ef4cc26
commit 16e028e50e
14 changed files with 574 additions and 450 deletions

View File

@@ -17,7 +17,7 @@ class BaseService
public function __construct()
{
$token = request()->header('token');
$this->userId = $token;
$this->userId = (int)$token;
$this->userInfo = UserModel::where('id', $token)->first();
}