From 2caafed814dbbaf0905e77db91ed7835d8d854d9 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 16 六月 2025 13:08:37 +0800
Subject: [PATCH] fix: bug

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

diff --git a/src/services/api/User.ts b/src/services/api/User.ts
index 81de504..62c8e00 100644
--- a/src/services/api/User.ts
+++ b/src/services/api/User.ts
@@ -49,7 +49,7 @@
 
 /** 鏍¢獙鎵归噺鍒涘缓璁よ瘉鐢ㄦ埛鏁版嵁 POST /api/User/CheckBatchCreateCompanyUserData */
 export async function checkBatchCreateCompanyUserData(
-  body: API.CheckBatchCreateCompanyUserInput[],
+  body: API.CheckBatchCreateCompanyUserDataInput,
   options?: API.RequestConfig
 ) {
   return request<API.CheckBatchCreateCompanyUserResult[]>(
@@ -425,6 +425,24 @@
   });
 }
 
+/** 姝ゅ鍚庣娌℃湁鎻愪緵娉ㄩ噴 GET /api/User/GetUserBaseEnterpriseInfoThridpart */
+export async function getUserBaseEnterpriseInfoThridpart(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIgetUserBaseEnterpriseInfoThridpartParams,
+  options?: API.RequestConfig
+) {
+  return request<API.GetUserBaseEnterpriseInfoOutput>(
+    '/api/User/GetUserBaseEnterpriseInfoThridpart',
+    {
+      method: 'GET',
+      params: {
+        ...params,
+      },
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鑾峰彇鐢ㄦ埛璇佷功鐢宠鐘舵�� GET /api/User/GetUserBestSignUserRegStatus */
 export async function getUserBestSignUserRegStatus(options?: API.RequestConfig) {
   return request<number>('/api/User/GetUserBestSignUserRegStatus', {

--
Gitblit v1.9.1