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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| /* eslint-disable */
| // @ts-ignore
| import { request } from '@/utils/request';
|
| /** 支付宝资金二级商户KYB代进件 POST /api/user/enterpriseWallet/alipayFundExpandindirectCreate */
| export async function alipayFundExpandindirectCreate(
| body: API.AlipayFundExpandindirectCreateCommand,
| options?: API.RequestConfig
| ) {
| return request<boolean>('/api/user/enterpriseWallet/alipayFundExpandindirectCreate', {
| method: 'POST',
| headers: {
| 'Content-Type': 'application/json-patch+json',
| },
| data: body,
| ...(options || {}),
| });
| }
|
| /** 资金二级商户KYB代进件状态通知接口 POST /api/user/enterpriseWallet/alipayFundExpandindirectCreateNotify */
| export async function alipayFundExpandindirectCreateNotify(
| body: API.AlipayFundExpandindirectCreateNotifyCommand,
| options?: API.RequestConfig
| ) {
| return request<boolean>('/api/user/enterpriseWallet/alipayFundExpandindirectCreateNotify', {
| method: 'POST',
| headers: {
| 'Content-Type': 'application/json-patch+json',
| },
| data: body,
| ...(options || {}),
| });
| }
|
| /** 支付宝用户授权协议签约通知 POST /api/user/enterpriseWallet/alipayUserAgreementPageSignNotify */
| export async function alipayUserAgreementPageSignNotify(
| body: API.AlipayUserAgreementPageSignNotifyQuery,
| options?: API.RequestConfig
| ) {
| return request<boolean>('/api/user/enterpriseWallet/alipayUserAgreementPageSignNotify', {
| method: 'POST',
| headers: {
| 'Content-Type': 'application/json-patch+json',
| },
| data: body,
| ...(options || {}),
| });
| }
|
|