From 48c58fdd8b91d662d99bb4c87826bceb22df6e9b Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 15 五月 2025 09:49:07 +0800
Subject: [PATCH] fix: bug

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

diff --git a/src/services/api/User.ts b/src/services/api/User.ts
index 2598eb6..81de504 100644
--- a/src/services/api/User.ts
+++ b/src/services/api/User.ts
@@ -371,6 +371,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榛樿娌℃湁鐢熸垚瀵硅薄)
@@ -397,6 +413,14 @@
       'Content-Type': 'application/json',
     },
     data: body,
+    ...(options || {}),
+  });
+}
+
+/** 鑾峰彇浼佷笟濂栭噾浣欓鍙婂熀鏈俊鎭� GET /api/User/GetUserBaseEnterpriseInfo */
+export async function getUserBaseEnterpriseInfo(options?: API.RequestConfig) {
+  return request<API.GetUserBaseEnterpriseInfoOutput>('/api/User/GetUserBaseEnterpriseInfo', {
+    method: 'GET',
     ...(options || {}),
   });
 }
@@ -698,6 +722,36 @@
   });
 }
 
+/** 淇濆瓨閾惰鍩烘湰淇℃伅 POST /api/User/SetUserEnterpiseBankInfo */
+export async function setUserEnterpiseBankInfo(
+  body: API.SetUserEnterpriseBankInfoInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/User/SetUserEnterpiseBankInfo', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 淇濆瓨浼佷笟鍩烘湰淇℃伅 POST /api/User/SetUserEnterpiseBaseInfo */
+export async function setUserEnterpiseBaseInfo(
+  body: API.SetUserEnterpiseBaseInfoInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/User/SetUserEnterpiseBaseInfo', {
+    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