Compare commits

...

4 Commits

Author SHA1 Message Date
2801dec5b9 Merge tag '1.2.2' into develop 2025-05-15 20:01:42 +08:00
9607f69e24 Merge branch 'release/1.2.2' 2025-05-15 20:01:42 +08:00
6d3709da51 1.2.2 2025-05-15 20:01:31 +08:00
1456b21f34 加入错误码 2025-05-15 20:01:03 +08:00
3 changed files with 19 additions and 6 deletions

View File

@ -2,7 +2,7 @@
"name": "maiyoule/mqttclient_author",
"type": "library",
"description": "MQTT管理模块操作库",
"version": "1.2.1",
"version": "1.2.2",
"license": "MIT",
"authors": [
{

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;
}
}