From dbebb8c83128e379bb24d8d7c1bf0838d7c5ebdc Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 20 十一月 2025 15:03:42 +0800
Subject: [PATCH] fix: s

---
 src/services/api/ExternalSystem.ts |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/src/services/api/ExternalSystem.ts b/src/services/api/ExternalSystem.ts
index 2018eb9..721692b 100644
--- a/src/services/api/ExternalSystem.ts
+++ b/src/services/api/ExternalSystem.ts
@@ -31,3 +31,36 @@
     ...(options || {}),
   });
 }
+
+/** 鏌ヨ澶栭儴绯荤粺骞冲畨閾惰閽卞寘淇℃伅 GET /api/ExternalSystem/GetExternalSystemPingAnPayWallet */
+export async function getExternalSystemPingAnPayWallet(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIgetExternalSystemPingAnPayWalletParams,
+  options?: API.RequestConfig
+) {
+  return request<API.GetExternalSystemPingAnPayWalletOutput>(
+    '/api/ExternalSystem/GetExternalSystemPingAnPayWallet',
+    {
+      method: 'GET',
+      params: {
+        ...params,
+      },
+      ...(options || {}),
+    }
+  );
+}
+
+/** 淇濆瓨澶栭儴绯荤粺骞冲畨閾惰閽卞寘淇℃伅 POST /api/ExternalSystem/SaveExternalSystemPingAnPayWallet */
+export async function saveExternalSystemPingAnPayWallet(
+  body: API.SaveExternalSystemPingAnPayWalletInput,
+  options?: API.RequestConfig
+) {
+  return request<string>('/api/ExternalSystem/SaveExternalSystemPingAnPayWallet', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}

--
Gitblit v1.9.1