zhengyiming
2025-09-23 d4f59dcab16d0a48b37c2eaebc2cee78116a8ba4
src/services/api/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 || {}),
  });
}