From 92921431668181fb6d3387368c751ccc40aba8cf Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 28 十一月 2025 17:14:32 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev-dataBoard'

---
 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