From a8651ec657fd2ef85cacc6660916dc847a932e1f Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期一, 10 十一月 2025 16:36:05 +0800
Subject: [PATCH] fix: bug
---
src/services/api/enterpriseCooperationWallet.ts | 122 ++++++++++++++++++++++++++++++++++++++++
1 files changed, 122 insertions(+), 0 deletions(-)
diff --git a/src/services/api/enterpriseCooperationWallet.ts b/src/services/api/enterpriseCooperationWallet.ts
new file mode 100644
index 0000000..d8a3ee9
--- /dev/null
+++ b/src/services/api/enterpriseCooperationWallet.ts
@@ -0,0 +1,122 @@
+/* eslint-disable */
+// @ts-ignore
+import { request } from '@/utils/request';
+
+/** 鏌ヨ浼佷笟鍚堜綔閽卞寘鍏呭�兼槑缁� GET /api/user/enterpriseCooperationWallet/getCooperationWalletRechargeTransaction */
+export async function getCooperationWalletRechargeTransaction(
+ // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+ params: API.APIgetCooperationWalletRechargeTransactionParams,
+ options?: API.RequestConfig
+) {
+ return request<API.GetCooperationWalletRechargeTransactionQueryResult>(
+ '/api/user/enterpriseCooperationWallet/getCooperationWalletRechargeTransaction',
+ {
+ method: 'GET',
+ params: {
+ ...params,
+ },
+ ...(options || {}),
+ }
+ );
+}
+
+/** 鏌ヨ浼佷笟鍚堜綔閽卞寘鍏呭�间氦鏄撳垎椤靛垪琛ㄦ暟鎹� POST /api/user/enterpriseCooperationWallet/getCooperationWalletRechargeTransactions */
+export async function getCooperationWalletRechargeTransactions(
+ body: API.GetCooperationWalletRechargeTransactionsQuery,
+ options?: API.RequestConfig
+) {
+ return request<API.GetCooperationWalletRechargeTransactionsQueryResult>(
+ '/api/user/enterpriseCooperationWallet/getCooperationWalletRechargeTransactions',
+ {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json-patch+json',
+ },
+ data: body,
+ ...(options || {}),
+ }
+ );
+}
+
+/** 鏌ヨ浼佷笟鍚堜綔閽卞寘鍒嗛〉鍒楄〃鏁版嵁 POST /api/user/enterpriseCooperationWallet/getCooperationWallets */
+export async function getCooperationWallets(
+ body: API.GetCooperationWalletsQuery,
+ options?: API.RequestConfig
+) {
+ return request<API.GetCooperationWalletsQueryResult>(
+ '/api/user/enterpriseCooperationWallet/getCooperationWallets',
+ {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json-patch+json',
+ },
+ data: body,
+ ...(options || {}),
+ }
+ );
+}
+
+/** 鏌ヨ浼佷笟鏀舵璐︽埛 GET /api/user/enterpriseCooperationWallet/getEnterpriseReceiveAccount */
+export async function getEnterpriseReceiveAccount(
+ // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+ params: API.APIgetEnterpriseReceiveAccountParams,
+ options?: API.RequestConfig
+) {
+ return request<API.GetEnterpriseReceiveAccountQueryResult>(
+ '/api/user/enterpriseCooperationWallet/getEnterpriseReceiveAccount',
+ {
+ method: 'GET',
+ params: {
+ ...params,
+ request: undefined,
+ ...params['request'],
+ },
+ ...(options || {}),
+ }
+ );
+}
+
+/** 鍏呭�间紒涓氬悎浣滈挶鍖� POST /api/user/enterpriseCooperationWallet/rechargeCooperationWallet */
+export async function rechargeCooperationWallet(
+ body: API.RechargeCooperationWalletCommand,
+ options?: API.RequestConfig
+) {
+ return request<string>('/api/user/enterpriseCooperationWallet/rechargeCooperationWallet', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json-patch+json',
+ },
+ data: body,
+ ...(options || {}),
+ });
+}
+
+/** 淇濆瓨浼佷笟鏀舵璐︽埛 POST /api/user/enterpriseCooperationWallet/saveEnterpriseReceiveAccount */
+export async function saveEnterpriseReceiveAccount(
+ body: API.SaveEnterpriseReceiveAccountCommand,
+ options?: API.RequestConfig
+) {
+ return request<string>('/api/user/enterpriseCooperationWallet/saveEnterpriseReceiveAccount', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json-patch+json',
+ },
+ data: body,
+ ...(options || {}),
+ });
+}
+
+/** 纭鍏呭�间紒涓氬悎浣滈挶鍖� POST /api/user/enterpriseCooperationWallet/sureRechargeCooperationWallet */
+export async function sureRechargeCooperationWallet(
+ body: API.SureRechargeCooperationWalletCommand,
+ options?: API.RequestConfig
+) {
+ return request<string>('/api/user/enterpriseCooperationWallet/sureRechargeCooperationWallet', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json-patch+json',
+ },
+ data: body,
+ ...(options || {}),
+ });
+}
--
Gitblit v1.9.1