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/User.ts |   17 ++++++++++++++++-
 1 files changed, 16 insertions(+), 1 deletions(-)

diff --git a/src/services/api/User.ts b/src/services/api/User.ts
index 3e7a25b..451b060 100644
--- a/src/services/api/User.ts
+++ b/src/services/api/User.ts
@@ -34,7 +34,7 @@
 
 /** 鎵归噺鍒涘缓璁よ瘉鐢ㄦ埛 POST /api/User/BatchCreateCompanyUser */
 export async function batchCreateCompanyUser(
-  body: API.AddCertifiedUserInput[],
+  body: API.BatchCreateCompanyUserV3Input,
   options?: API.RequestConfig
 ) {
   return request<string[]>('/api/User/BatchCreateCompanyUser', {
@@ -784,6 +784,21 @@
   });
 }
 
+/** 璁剧疆浼佷笟鍚堜綔鍗忚 POST /api/User/SetUserEnterpiseCooperationUrl */
+export async function setUserEnterpiseCooperationUrl(
+  body: API.SetUserEnterpiseCooperationUrlInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/User/SetUserEnterpiseCooperationUrl', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鍙栧叧鐢ㄦ埛 POST /api/User/UnFollowUser */
 export async function unFollowUser(body: API.UnFollowUserInput, options?: API.RequestConfig) {
   return request<number>('/api/User/UnFollowUser', {

--
Gitblit v1.9.1