@yunzhanghu/sdk-nodejs 1.0.21 → 1.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +2 -1
- package/example/calculatelabor.js +3 -2
- package/example/customerLink.js +5 -5
- package/example/payment.js +42 -27
- package/package.json +1 -1
- package/src/services/calculatelabor/index.ts +66 -24
- package/src/services/payment/index.ts +318 -250
- package/yzh/services/calculatelabor/index.d.ts +66 -24
- package/yzh/services/payment/index.d.ts +318 -250
|
@@ -2,28 +2,34 @@ import YZHclient from '../../common/client';
|
|
|
2
2
|
|
|
3
3
|
/** CreateBankpayOrderRequest 银行卡实时支付请求 */
|
|
4
4
|
interface CreateBankpayOrderRequest {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
5
|
+
/** 平台企业订单号 */
|
|
6
|
+
order_id: string;
|
|
7
|
+
/** 平台企业 ID */
|
|
8
|
+
dealer_id: string;
|
|
9
|
+
/** 综合服务主体 ID */
|
|
10
|
+
broker_id: string;
|
|
11
|
+
/** 姓名 */
|
|
12
|
+
real_name: string;
|
|
13
|
+
/** 银行卡号 */
|
|
14
|
+
card_no: string;
|
|
15
|
+
/** 身份证号码 */
|
|
16
|
+
id_card: string;
|
|
17
|
+
/** 手机号 */
|
|
18
|
+
phone_no: string;
|
|
19
|
+
/** 订单金额 */
|
|
20
|
+
pay: string;
|
|
21
|
+
/** 订单备注 */
|
|
22
|
+
pay_remark: string;
|
|
23
|
+
/** 回调地址 */
|
|
24
|
+
notify_url: string;
|
|
25
|
+
/** 业务线标识 */
|
|
26
|
+
project_id: string;
|
|
27
|
+
/** 互联网平台名称 */
|
|
28
|
+
dealer_platform_name: string;
|
|
29
|
+
/** 用户名称/昵称 */
|
|
30
|
+
dealer_user_nickname: string;
|
|
31
|
+
/** 用户唯一标识码 */
|
|
32
|
+
dealer_user_id: string;
|
|
27
33
|
}
|
|
28
34
|
|
|
29
35
|
/** CreateBankpayOrderResponse 银行卡实时支付返回 */
|
|
@@ -38,30 +44,36 @@ interface CreateBankpayOrderResponse {
|
|
|
38
44
|
|
|
39
45
|
/** CreateAlipayOrderRequest 支付宝实时支付请求 */
|
|
40
46
|
interface CreateAlipayOrderRequest {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
47
|
+
/** 平台企业订单号 */
|
|
48
|
+
order_id: string;
|
|
49
|
+
/** 平台企业 ID */
|
|
50
|
+
dealer_id: string;
|
|
51
|
+
/** 综合服务主体 ID */
|
|
52
|
+
broker_id: string;
|
|
53
|
+
/** 姓名 */
|
|
54
|
+
real_name: string;
|
|
55
|
+
/** 支付宝账户 */
|
|
56
|
+
card_no: string;
|
|
57
|
+
/** 身份证号码 */
|
|
58
|
+
id_card: string;
|
|
59
|
+
/** 手机号 */
|
|
60
|
+
phone_no: string;
|
|
61
|
+
/** 订单金额 */
|
|
62
|
+
pay: string;
|
|
63
|
+
/** 订单备注 */
|
|
64
|
+
pay_remark: string;
|
|
65
|
+
/** 回调地址 */
|
|
66
|
+
notify_url: string;
|
|
67
|
+
/** 业务线标识 */
|
|
68
|
+
project_id: string;
|
|
69
|
+
/** 校验支付宝账户姓名,固定值:Check */
|
|
70
|
+
check_name: string;
|
|
71
|
+
/** 互联网平台名称 */
|
|
72
|
+
dealer_platform_name: string;
|
|
73
|
+
/** 用户名称/昵称 */
|
|
74
|
+
dealer_user_nickname: string;
|
|
75
|
+
/** 用户唯一标识码 */
|
|
76
|
+
dealer_user_id: string;
|
|
65
77
|
}
|
|
66
78
|
|
|
67
79
|
/** CreateAlipayOrderResponse 支付宝实时支付返回 */
|
|
@@ -76,34 +88,40 @@ interface CreateAlipayOrderResponse {
|
|
|
76
88
|
|
|
77
89
|
/** CreateWxpayOrderRequest 微信实时支付请求 */
|
|
78
90
|
interface CreateWxpayOrderRequest {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
91
|
+
/** 平台企业订单号 */
|
|
92
|
+
order_id: string;
|
|
93
|
+
/** 平台企业 ID */
|
|
94
|
+
dealer_id: string;
|
|
95
|
+
/** 综合服务主体 ID */
|
|
96
|
+
broker_id: string;
|
|
97
|
+
/** 姓名 */
|
|
98
|
+
real_name: string;
|
|
99
|
+
/** 微信用户 openid */
|
|
100
|
+
openid: string;
|
|
101
|
+
/** 身份证号码 */
|
|
102
|
+
id_card: string;
|
|
103
|
+
/** 手机号 */
|
|
104
|
+
phone_no: string;
|
|
105
|
+
/** 订单金额 */
|
|
106
|
+
pay: string;
|
|
107
|
+
/** 订单备注 */
|
|
108
|
+
pay_remark: string;
|
|
109
|
+
/** 回调地址 */
|
|
110
|
+
notify_url: string;
|
|
111
|
+
/** 平台企业微信 AppID */
|
|
112
|
+
wx_app_id: string;
|
|
113
|
+
/** 微信支付模式,固定值:transfer */
|
|
114
|
+
wxpay_mode: string;
|
|
115
|
+
/** 业务线标识 */
|
|
116
|
+
project_id: string;
|
|
117
|
+
/** 描述信息,该字段已废弃 */
|
|
118
|
+
notes: string;
|
|
119
|
+
/** 互联网平台名称 */
|
|
120
|
+
dealer_platform_name: string;
|
|
121
|
+
/** 用户名称/昵称 */
|
|
122
|
+
dealer_user_nickname: string;
|
|
123
|
+
/** 用户唯一标识码 */
|
|
124
|
+
dealer_user_id: string;
|
|
107
125
|
}
|
|
108
126
|
|
|
109
127
|
/** CreateWxpayOrderResponse 微信实时支付返回 */
|
|
@@ -128,76 +146,88 @@ interface GetOrderRequest {
|
|
|
128
146
|
|
|
129
147
|
/** GetOrderResponse 查询单笔订单信息返回 */
|
|
130
148
|
interface GetOrderResponse {
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
149
|
+
/** 平台企业订单号 */
|
|
150
|
+
order_id: string;
|
|
151
|
+
/** 订单金额 */
|
|
152
|
+
pay: string;
|
|
153
|
+
/** 综合服务主体 ID */
|
|
154
|
+
broker_id: string;
|
|
155
|
+
/** 平台企业 ID */
|
|
156
|
+
dealer_id: string;
|
|
157
|
+
/** 姓名 */
|
|
158
|
+
real_name: string;
|
|
159
|
+
/** 收款人账号 */
|
|
160
|
+
card_no: string;
|
|
161
|
+
/** 身份证号码 */
|
|
162
|
+
id_card: string;
|
|
163
|
+
/** 手机号 */
|
|
164
|
+
phone_no: string;
|
|
165
|
+
/** 订单状态码 */
|
|
166
|
+
status: string;
|
|
167
|
+
/** 订单详细状态码 */
|
|
168
|
+
status_detail: string;
|
|
169
|
+
/** 订单状态码描述 */
|
|
170
|
+
status_message: string;
|
|
171
|
+
/** 订单详细状态码描述 */
|
|
172
|
+
status_detail_message: string;
|
|
173
|
+
/** 订单状态补充信息 */
|
|
174
|
+
supplemental_detail_message: string;
|
|
175
|
+
/** 综合服务主体支付金额 */
|
|
176
|
+
broker_amount: string;
|
|
177
|
+
/** 综合服务平台流水号 */
|
|
178
|
+
ref: string;
|
|
179
|
+
/** 支付交易流水号 */
|
|
180
|
+
broker_bank_bill: string;
|
|
181
|
+
/** 支付路径 */
|
|
182
|
+
withdraw_platform: string;
|
|
183
|
+
/** 订单接收时间,精确到秒 */
|
|
184
|
+
created_at: string;
|
|
185
|
+
/** 订单完成时间,精确到秒 */
|
|
186
|
+
finished_time: string;
|
|
187
|
+
/** 应收综合服务主体加成服务费金额 */
|
|
188
|
+
broker_fee: string;
|
|
189
|
+
/** 应收余额账户支出加成服务费金额 */
|
|
190
|
+
broker_real_fee: string;
|
|
191
|
+
/** 应收加成服务费抵扣金额 */
|
|
192
|
+
broker_deduct_fee: string;
|
|
193
|
+
/** 应收用户加成服务费金额 */
|
|
194
|
+
user_fee: string;
|
|
195
|
+
/** 实收综合服务主体加成服务费金额 */
|
|
196
|
+
received_broker_fee: string;
|
|
197
|
+
/** 实收余额账户支出加成服务费金额 */
|
|
198
|
+
received_broker_real_fee: string;
|
|
199
|
+
/** 实收加成服务费抵扣金额 */
|
|
200
|
+
received_broker_deduct_fee: string;
|
|
201
|
+
/** 实收用户加成服务费金额 */
|
|
202
|
+
received_user_fee: string;
|
|
203
|
+
/** 订单备注 */
|
|
204
|
+
pay_remark: string;
|
|
205
|
+
/** 银行名称 */
|
|
206
|
+
bank_name: string;
|
|
207
|
+
/** 项目标识 */
|
|
208
|
+
project_id: string;
|
|
209
|
+
/** 新就业形态劳动者 ID,该字段已废弃 */
|
|
210
|
+
anchor_id: string;
|
|
211
|
+
/** 描述信息,该字段已废弃 */
|
|
212
|
+
notes: string;
|
|
213
|
+
/** 系统支付金额,该字段已废弃 */
|
|
214
|
+
sys_amount: string;
|
|
215
|
+
/** 税费,该字段已废弃 */
|
|
216
|
+
tax: string;
|
|
217
|
+
/** 系统支付费用,该字段已废弃 */
|
|
218
|
+
sys_fee: string;
|
|
219
|
+
/** 用户实收金额 */
|
|
220
|
+
user_real_amount: string;
|
|
221
|
+
/** 缴税明细 */
|
|
222
|
+
tax_detail: TaxDetail;
|
|
223
|
+
/** 实缴税费总额 */
|
|
224
|
+
received_tax_amount: string;
|
|
225
|
+
/** 互联网平台名称 */
|
|
226
|
+
dealer_platform_name: string;
|
|
227
|
+
/** 用户名称/昵称 */
|
|
228
|
+
dealer_user_nickname: string;
|
|
229
|
+
/** 用户唯一标识码 */
|
|
230
|
+
dealer_user_id: string;
|
|
201
231
|
}
|
|
202
232
|
|
|
203
233
|
/** GetDealerVARechargeAccountRequest 查询平台企业汇款信息请求 */
|
|
@@ -332,26 +362,32 @@ interface CreateBatchOrderRequest {
|
|
|
332
362
|
|
|
333
363
|
/** BatchOrderInfo 批次下单订单信息 */
|
|
334
364
|
interface BatchOrderInfo {
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
365
|
+
/** 平台企业订单号 */
|
|
366
|
+
order_id: string;
|
|
367
|
+
/** 姓名 */
|
|
368
|
+
real_name: string;
|
|
369
|
+
/** 身份证号码 */
|
|
370
|
+
id_card: string;
|
|
371
|
+
/** 收款账号 */
|
|
372
|
+
card_no: string;
|
|
373
|
+
/** 微信用户 openid */
|
|
374
|
+
openid: string;
|
|
375
|
+
/** 手机号 */
|
|
376
|
+
phone_no: string;
|
|
377
|
+
/** 业务线标识 */
|
|
378
|
+
project_id: string;
|
|
379
|
+
/** 订单金额 */
|
|
380
|
+
pay: string;
|
|
381
|
+
/** 订单备注 */
|
|
382
|
+
pay_remark: string;
|
|
383
|
+
/** 回调地址 */
|
|
384
|
+
notify_url: string;
|
|
385
|
+
/** 互联网平台名称 */
|
|
386
|
+
dealer_platform_name: string;
|
|
387
|
+
/** 用户名称/昵称 */
|
|
388
|
+
dealer_user_nickname: string;
|
|
389
|
+
/** 用户唯一标识码 */
|
|
390
|
+
dealer_user_id: string;
|
|
355
391
|
}
|
|
356
392
|
|
|
357
393
|
/** CreateBatchOrderResponse 批次下单返回 */
|
|
@@ -540,96 +576,128 @@ interface GetOrderLxlwRequest {
|
|
|
540
576
|
|
|
541
577
|
/** GetOrderLxlwResponse 查询劳务模式单笔订单信息返回 */
|
|
542
578
|
interface GetOrderLxlwResponse {
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
579
|
+
/** 平台企业订单号 */
|
|
580
|
+
order_id: string;
|
|
581
|
+
/** 订单金额 */
|
|
582
|
+
pay: string;
|
|
583
|
+
/** 综合服务主体 ID */
|
|
584
|
+
broker_id: string;
|
|
585
|
+
/** 平台企业 ID */
|
|
586
|
+
dealer_id: string;
|
|
587
|
+
/** 姓名 */
|
|
588
|
+
real_name: string;
|
|
589
|
+
/** 收款人账号 */
|
|
590
|
+
card_no: string;
|
|
591
|
+
/** 身份证号码 */
|
|
592
|
+
id_card: string;
|
|
593
|
+
/** 手机号 */
|
|
594
|
+
phone_no: string;
|
|
595
|
+
/** 订单状态码 */
|
|
596
|
+
status: string;
|
|
597
|
+
/** 订单详细状态码 */
|
|
598
|
+
status_detail: string;
|
|
599
|
+
/** 订单状态码描述 */
|
|
600
|
+
status_message: string;
|
|
601
|
+
/** 订单详情状态码描述 */
|
|
602
|
+
status_detail_message: string;
|
|
603
|
+
/** 订单状态补充信息 */
|
|
604
|
+
supplemental_detail_message: string;
|
|
605
|
+
/** 综合服务主体支付金额 */
|
|
606
|
+
broker_amount: string;
|
|
607
|
+
/** 综合服务平台流水号 */
|
|
608
|
+
ref: string;
|
|
609
|
+
/** 支付交易流水号 */
|
|
610
|
+
broker_bank_bill: string;
|
|
611
|
+
/** 支付路径 */
|
|
612
|
+
withdraw_platform: string;
|
|
613
|
+
/** 订单接收时间,精确到秒 */
|
|
614
|
+
created_at: string;
|
|
615
|
+
/** 订单完成时间,精确到秒 */
|
|
616
|
+
finished_time: string;
|
|
617
|
+
/** 应收综合服务主体加成服务费金额 */
|
|
618
|
+
broker_fee: string;
|
|
619
|
+
/** 应收余额账户支出加成服务费金额 */
|
|
620
|
+
broker_real_fee: string;
|
|
621
|
+
/** 应收加成服务费抵扣金额 */
|
|
622
|
+
broker_deduct_fee: string;
|
|
623
|
+
/** 应收用户加成服务费金额 */
|
|
624
|
+
user_fee: string;
|
|
625
|
+
/** 实收综合服务主体加成服务费金额 */
|
|
626
|
+
received_broker_fee: string;
|
|
627
|
+
/** 实收余额账户支出加成服务费金额 */
|
|
628
|
+
received_broker_real_fee: string;
|
|
629
|
+
/** 实收加成服务费抵扣金额 */
|
|
630
|
+
received_broker_deduct_fee: string;
|
|
631
|
+
/** 实收用户加成服务费金额 */
|
|
632
|
+
received_user_fee: string;
|
|
633
|
+
/** 订单备注 */
|
|
634
|
+
pay_remark: string;
|
|
635
|
+
/** 银行名称 */
|
|
636
|
+
bank_name: string;
|
|
637
|
+
/** 业务线标识 */
|
|
638
|
+
project_id: string;
|
|
639
|
+
/** 新就业形态劳动者 ID,该字段已废弃 */
|
|
640
|
+
anchor_id: string;
|
|
641
|
+
/** 描述信息,该字段已废弃 */
|
|
642
|
+
notes: string;
|
|
643
|
+
/** 系统支付金额,该字段已废弃 */
|
|
644
|
+
sys_amount: string;
|
|
645
|
+
/** 税费,该字段已废弃 */
|
|
646
|
+
tax: string;
|
|
647
|
+
/** 系统支付费用,该字段已废弃 */
|
|
648
|
+
sys_fee: string;
|
|
649
|
+
/** 用户实收金额 */
|
|
650
|
+
user_real_amount: string;
|
|
651
|
+
/** 缴税明细 */
|
|
652
|
+
tax_detail: TaxDetail;
|
|
653
|
+
/** 实缴税费总额 */
|
|
654
|
+
received_tax_amount: string;
|
|
655
|
+
/** 互联网平台名称 */
|
|
656
|
+
dealer_platform_name: string;
|
|
657
|
+
/** 用户名称/昵称 */
|
|
658
|
+
dealer_user_nickname: string;
|
|
659
|
+
/** 用户唯一标识码 */
|
|
660
|
+
dealer_user_id: string;
|
|
617
661
|
}
|
|
618
662
|
|
|
619
663
|
/** TaxDetail 缴税明细 */
|
|
620
664
|
interface TaxDetail {
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
665
|
+
/** 预扣个税 */
|
|
666
|
+
personal_tax: string;
|
|
667
|
+
/** 预扣增值税 */
|
|
668
|
+
value_added_tax: string;
|
|
669
|
+
/** 预扣附加税费 */
|
|
670
|
+
additional_tax: string;
|
|
671
|
+
/** 实缴个税 */
|
|
672
|
+
received_personal_tax: string;
|
|
673
|
+
/** 实缴增值税 */
|
|
674
|
+
received_value_added_tax: string;
|
|
675
|
+
/** 实缴附加税费 */
|
|
676
|
+
received_additional_tax: string;
|
|
677
|
+
/** 用户预扣个税 */
|
|
678
|
+
user_personal_tax: string;
|
|
679
|
+
/** 平台企业预扣个税 */
|
|
680
|
+
dealer_personal_tax: string;
|
|
681
|
+
/** 用户预扣增值税 */
|
|
682
|
+
user_value_added_tax: string;
|
|
683
|
+
/** 平台企业预扣增值税 */
|
|
684
|
+
dealer_value_added_tax: string;
|
|
685
|
+
/** 用户预扣附加税费 */
|
|
686
|
+
user_additional_tax: string;
|
|
687
|
+
/** 平台企业预扣附加税费 */
|
|
688
|
+
dealer_additional_tax: string;
|
|
689
|
+
/** 用户实缴个税 */
|
|
690
|
+
user_received_personal_tax: string;
|
|
691
|
+
/** 平台企业实缴个税 */
|
|
692
|
+
dealer_received_personal_tax: string;
|
|
693
|
+
/** 用户实缴增值税 */
|
|
694
|
+
user_received_value_added_tax: string;
|
|
695
|
+
/** 平台企业实缴增值税 */
|
|
696
|
+
dealer_received_value_added_tax: string;
|
|
697
|
+
/** 用户实缴附加税费 */
|
|
698
|
+
user_received_additional_tax: string;
|
|
699
|
+
/** 平台企业实缴附加税费 */
|
|
700
|
+
dealer_received_additional_tax: string;
|
|
633
701
|
}
|
|
634
702
|
export class PaymentClient extends YZHclient {
|
|
635
703
|
// eslint-disable-next-line no-useless-constructor
|