From 5b0401fea3c339aa45feb0d165f36b1b7a76fdaf Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 20 十一月 2025 16:49:01 +0800
Subject: [PATCH] feat: 页面

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

diff --git a/src/services/api/ExternalSystem.ts b/src/services/api/ExternalSystem.ts
index 2018eb9..21cdaca 100644
--- a/src/services/api/ExternalSystem.ts
+++ b/src/services/api/ExternalSystem.ts
@@ -17,6 +17,17 @@
   });
 }
 
+/** 鏌ョ湅褰撳墠澶栭儴绯荤粺淇℃伅 GET /api/ExternalSystem/GetCurrentExternalSystem */
+export async function getCurrentExternalSystem(options?: API.RequestConfig) {
+  return request<API.GetCurrentExternalSystemOutput>(
+    '/api/ExternalSystem/GetCurrentExternalSystem',
+    {
+      method: 'GET',
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鑾峰彇澶栭儴绯荤粺鍒楄〃 POST /api/ExternalSystem/GetExternalSystemList */
 export async function getExternalSystemList(
   body: API.GetExternalSystemInput,
@@ -31,3 +42,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