From 7508a26c00c2ce93ad8c08394f0f9d3d13ebb4ab Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 26 六月 2025 14:25:40 +0800
Subject: [PATCH] feat: 接口对接

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

diff --git a/src/services/api/User.ts b/src/services/api/User.ts
index fa18799..3afa8af 100644
--- a/src/services/api/User.ts
+++ b/src/services/api/User.ts
@@ -108,6 +108,18 @@
   });
 }
 
+/** 鑾峰彇鍏ㄩ儴鐢ㄦ埛涓嬫媺鍒楄〃 POST /api/User/GetUserAllList */
+export async function getUserAllList(body: API.QueryUserPageInput, options?: API.RequestConfig) {
+  return request<API.UserListOutput[]>('/api/User/GetUserAllList', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鑾峰彇瀹㈡埛浣欓淇℃伅 GET /api/User/GetUserAmountShow */
 export async function getUserAmountShow(options?: API.RequestConfig) {
   return request<API.UserAmountShowDto>('/api/User/GetUserAmountShow', {

--
Gitblit v1.9.1