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

diff --git a/src/services/api/User.ts b/src/services/api/User.ts
index 62c8e00..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', {
@@ -302,6 +302,20 @@
       'Content-Type': 'application/json',
     },
     data: body,
+    ...(options || {}),
+  });
+}
+
+/** 鑾峰彇姹熶綉淇濈敤鎴蜂俊鎭� GET /api/User/GetJybUserInfo/${param0} */
+export async function getJybUserInfoId(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIgetJybUserInfoIdParams,
+  options?: API.RequestConfig
+) {
+  const { id: param0, ...queryParams } = params;
+  return request<API.JybUserInfoDto>(`/api/User/GetJybUserInfo/${param0}`, {
+    method: 'GET',
+    params: { ...queryParams },
     ...(options || {}),
   });
 }
@@ -770,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