From d37aa6d93da06cf6062ca406f7820ef30d1ee817 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期三, 24 九月 2025 10:49:33 +0800 Subject: [PATCH] fix: s --- packages/services/apiV2/enterpriseWallet.ts | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/packages/services/apiV2/enterpriseWallet.ts b/packages/services/apiV2/enterpriseWallet.ts index f47a980..a71c0c5 100644 --- a/packages/services/apiV2/enterpriseWallet.ts +++ b/packages/services/apiV2/enterpriseWallet.ts @@ -310,3 +310,15 @@ } ); } + +/** 娴嬭瘯闃块噷鏀粯 POST /api/user/enterpriseWallet/testAliPay */ +export async function testAliPay(body: API.TestAliPayCommand, options?: API.RequestConfig) { + return request<string>('/api/user/enterpriseWallet/testAliPay', { + method: 'POST', + headers: { + 'Content-Type': 'application/json-patch+json', + }, + data: body, + ...(options || {}), + }); +} -- Gitblit v1.9.1