From e800a4fbc5becea02001351d27cc4985c21860ec Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期五, 25 七月 2025 16:52:35 +0800
Subject: [PATCH] fix: bug

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

diff --git a/src/services/api/User.ts b/src/services/api/User.ts
index d8c7edf..3e7a25b 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[]>(
@@ -306,6 +306,20 @@
   });
 }
 
+/** 鑾峰彇姹熶綉淇濈敤鎴蜂俊鎭� 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 || {}),
+  });
+}
+
 /** 鑾峰彇浜掔浉鍏虫敞鍒嗛〉鍒楄〃 POST /api/User/GetMutualFollowUserPage */
 export async function getMutualFollowUserPage(body: API.PageInput, options?: API.RequestConfig) {
   return request<API.FollowUserListOutputPageOutput>('/api/User/GetMutualFollowUserPage', {
@@ -371,6 +385,22 @@
   });
 }
 
+/** 鑾峰彇骞冲彴閾惰璐︽埛淇℃伅 GET /api/User/GetPlatIncomeRechargeAccount */
+export async function getPlatIncomeRechargeAccount(options?: API.RequestConfig) {
+  return request<API.GetPlatIncomeRechargeAccountOutput>('/api/User/GetPlatIncomeRechargeAccount', {
+    method: 'GET',
+    ...(options || {}),
+  });
+}
+
+/** 鑾峰彇骞冲彴寮�绁ㄤ俊鎭� GET /api/User/GetPlatInvoiceAccount */
+export async function getPlatInvoiceAccount(options?: API.RequestConfig) {
+  return request<API.GetPlatInvoiceAccountOutput>('/api/User/GetPlatInvoiceAccount', {
+    method: 'GET',
+    ...(options || {}),
+  });
+}
+
 /** 鑾峰彇骞冲彴鐢ㄦ埛璇︽儏 GET /api/User/GetPlatUserAttestationInfo */
 export async function getPlatUserAttestationInfo(
   // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
@@ -409,6 +439,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