加入错误码

This commit is contained in:
X14XA\shengli 2025-05-15 20:01:03 +08:00
parent 430af8aede
commit 1456b21f34
2 changed files with 18 additions and 5 deletions

View File

@ -162,7 +162,7 @@ class AuthorServerClient
return new BizResponse();
}
$data = json_decode($content, true);
return new BizResponse($data['code'] ?? 0, $data['message'] ?? '', $data['data'] ?? []);
return new BizResponse($data['code'] ?? 0, $data['message'] ?? '', $data['data'] ?? [], $data['err'] ?? '');
} catch (ClientException $e) {
$body = $e->getResponse()->getBody()->getContents();

View File

@ -6,19 +6,22 @@ class BizResponse
{
private int $code;
private string $message;
private $data;
private mixed $data;
private string $errCode;
/**
* @param int $code
* @param string $message
* @param $data
* @param array $data
* @param string $errCode
*/
public function __construct(int $code = -1, string $message = '', $data = [])
public function __construct(int $code = -1, string $message = '', mixed $data = [], string $errCode = '')
{
$this->code = $code;
$this->message = $message;
$this->data = $data;
$this->errCode = $errCode;
}
public function isSuccess(): bool
@ -49,7 +52,7 @@ class BizResponse
/**
* @return mixed
*/
public function getData()
public function getData(): mixed
{
return $this->data;
}
@ -62,5 +65,15 @@ class BizResponse
$this->data = $data;
}
public function getErrCode(): string
{
return $this->errCode;
}
public function setErrCode(string $errCode): void
{
$this->errCode = $errCode;
}
}