wupengfei
9 小时以前 0ae2f2f277c9a20648e2b53a804b443e412b523a
src/services/api/enterpriseWallet.ts
@@ -330,3 +330,15 @@
    }
  );
}
/** 测试微信支付 POST /api/user/enterpriseWallet/testWeChatPay */
export async function testWeChatPay(body: API.TestWeChatPayCommand, options?: API.RequestConfig) {
  return request<boolean>('/api/user/enterpriseWallet/testWeChatPay', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json-patch+json',
    },
    data: body,
    ...(options || {}),
  });
}