From 26a090e6823a78eccd3cd1e63ead686b66122fad Mon Sep 17 00:00:00 2001 From: zhouzp <1558048883@qq.com> Date: Mon, 3 Aug 2026 15:26:19 +0800 Subject: [PATCH] =?UTF-8?q?jk8=E9=85=8D=E7=BD=AE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/service/JK8Services.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/common/service/JK8Services.php b/app/common/service/JK8Services.php index 234a2b6..e39bdc8 100644 --- a/app/common/service/JK8Services.php +++ b/app/common/service/JK8Services.php @@ -11,6 +11,7 @@ class JK8Services private $domain = ''; private $accessId = ''; private $token = ''; + private $merchantId = ''; public function __construct() { @@ -18,6 +19,7 @@ class JK8Services $this->domain = $config['api_url']; $this->accessId = $config['access_id']; $this->token = $config['token']; + $this->merchantId = $config['merchant_id']; } /** @@ -32,6 +34,7 @@ class JK8Services 'module' => $method, 'accessId' => $this->accessId, 'accessToken' => $this->token, + 'merchantId' => $this->merchantId, ...$params, ]; }