From d0bcfd0184f67458e3b612bddffdd8ba8b9a7915 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期一, 01 九月 2025 17:17:23 +0800 Subject: [PATCH] feat: 签约 --- packages/services/apiV2/enterpriseWallet.ts | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 48 insertions(+), 0 deletions(-) diff --git a/packages/services/apiV2/enterpriseWallet.ts b/packages/services/apiV2/enterpriseWallet.ts new file mode 100644 index 0000000..3016da8 --- /dev/null +++ b/packages/services/apiV2/enterpriseWallet.ts @@ -0,0 +1,48 @@ +/* eslint-disable */ +// @ts-ignore +import { request } from '@/utils/request'; + +/** 鏀粯瀹濊祫閲戜簩绾у晢鎴稫YB浠h繘浠� POST /api/user/enterpriseWallet/alipayFundExpandindirectCreate */ +export async function alipayFundExpandindirectCreate( + body: API.AlipayFundExpandindirectCreateCommand, + options?: API.RequestConfig +) { + return request<boolean>('/api/user/enterpriseWallet/alipayFundExpandindirectCreate', { + method: 'POST', + headers: { + 'Content-Type': 'application/json-patch+json', + }, + data: body, + ...(options || {}), + }); +} + +/** 璧勯噾浜岀骇鍟嗘埛KYB浠h繘浠剁姸鎬侀�氱煡鎺ュ彛 POST /api/user/enterpriseWallet/alipayFundExpandindirectCreateNotify */ +export async function alipayFundExpandindirectCreateNotify( + body: API.AlipayFundExpandindirectCreateNotifyCommand, + options?: API.RequestConfig +) { + return request<boolean>('/api/user/enterpriseWallet/alipayFundExpandindirectCreateNotify', { + method: 'POST', + headers: { + 'Content-Type': 'application/json-patch+json', + }, + data: body, + ...(options || {}), + }); +} + +/** 鏀粯瀹濈敤鎴锋巿鏉冨崗璁绾﹂�氱煡 POST /api/user/enterpriseWallet/alipayUserAgreementPageSignNotify */ +export async function alipayUserAgreementPageSignNotify( + body: API.AlipayUserAgreementPageSignNotifyQuery, + options?: API.RequestConfig +) { + return request<boolean>('/api/user/enterpriseWallet/alipayUserAgreementPageSignNotify', { + method: 'POST', + headers: { + 'Content-Type': 'application/json-patch+json', + }, + data: body, + ...(options || {}), + }); +} -- Gitblit v1.9.1