zhengyiming
2 天以前 4659ec0d8cf62f89f2d0edd2e169e4bcd022f0d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request';
 
/** 用户提现 POST /api/user/userWallet/saveUserWalletWithdraw */
export async function saveUserWalletWithdraw(
  body: API.SaveUserWalletWithdrawCommand,
  options?: API.RequestConfig
) {
  return request<string>('/api/user/userWallet/saveUserWalletWithdraw', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json-patch+json',
    },
    data: body,
    ...(options || {}),
  });
}
 
/** 微信JS支付通知 POST /api/user/userWallet/weChatPayTransactionsJsApiNotify */
export async function weChatPayTransactionsJsApiNotify(
  body: API.WeChatPayTransactionsJsApiNotifyCommand,
  options?: API.RequestConfig
) {
  return request<boolean>('/api/user/userWallet/weChatPayTransactionsJsApiNotify', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json-patch+json',
    },
    data: body,
    ...(options || {}),
  });
}