wupengfei
12 小时以前 0565894ebaf308d03e1dbfa38b0081cdfd4b79b6
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 || {}),
  });
}