chengkun
2025-06-05 4080b5997b38ca84b3b203c7101dcadb97b76925
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
// This file is auto-generated, don't edit it. Thanks.
package com.alipay.easysdk.payment.facetoface.models;
 
import com.aliyun.tea.*;
 
public class AlipayTradePayResponse extends TeaModel {
    // 响应原始字符串
    @NameInMap("http_body")
    @Validation(required = true)
    public String httpBody;
 
    @NameInMap("code")
    @Validation(required = true)
    public String code;
 
    @NameInMap("msg")
    @Validation(required = true)
    public String msg;
 
    @NameInMap("sub_code")
    @Validation(required = true)
    public String subCode;
 
    @NameInMap("sub_msg")
    @Validation(required = true)
    public String subMsg;
 
    @NameInMap("trade_no")
    @Validation(required = true)
    public String tradeNo;
 
    @NameInMap("out_trade_no")
    @Validation(required = true)
    public String outTradeNo;
 
    @NameInMap("buyer_logon_id")
    @Validation(required = true)
    public String buyerLogonId;
 
    @NameInMap("settle_amount")
    @Validation(required = true)
    public String settleAmount;
 
    @NameInMap("pay_currency")
    @Validation(required = true)
    public String payCurrency;
 
    @NameInMap("pay_amount")
    @Validation(required = true)
    public String payAmount;
 
    @NameInMap("settle_trans_rate")
    @Validation(required = true)
    public String settleTransRate;
 
    @NameInMap("trans_pay_rate")
    @Validation(required = true)
    public String transPayRate;
 
    @NameInMap("total_amount")
    @Validation(required = true)
    public String totalAmount;
 
    @NameInMap("trans_currency")
    @Validation(required = true)
    public String transCurrency;
 
    @NameInMap("settle_currency")
    @Validation(required = true)
    public String settleCurrency;
 
    @NameInMap("receipt_amount")
    @Validation(required = true)
    public String receiptAmount;
 
    @NameInMap("buyer_pay_amount")
    @Validation(required = true)
    public String buyerPayAmount;
 
    @NameInMap("point_amount")
    @Validation(required = true)
    public String pointAmount;
 
    @NameInMap("invoice_amount")
    @Validation(required = true)
    public String invoiceAmount;
 
    @NameInMap("gmt_payment")
    @Validation(required = true)
    public String gmtPayment;
 
    @NameInMap("fund_bill_list")
    @Validation(required = true)
    public java.util.List<TradeFundBill> fundBillList;
 
    @NameInMap("card_balance")
    @Validation(required = true)
    public String cardBalance;
 
    @NameInMap("store_name")
    @Validation(required = true)
    public String storeName;
 
    @NameInMap("buyer_user_id")
    @Validation(required = true)
    public String buyerUserId;
 
    @NameInMap("discount_goods_detail")
    @Validation(required = true)
    public String discountGoodsDetail;
 
    @NameInMap("voucher_detail_list")
    @Validation(required = true)
    public java.util.List<VoucherDetail> voucherDetailList;
 
    @NameInMap("advance_amount")
    @Validation(required = true)
    public String advanceAmount;
 
    @NameInMap("auth_trade_pay_mode")
    @Validation(required = true)
    public String authTradePayMode;
 
    @NameInMap("charge_amount")
    @Validation(required = true)
    public String chargeAmount;
 
    @NameInMap("charge_flags")
    @Validation(required = true)
    public String chargeFlags;
 
    @NameInMap("settlement_id")
    @Validation(required = true)
    public String settlementId;
 
    @NameInMap("business_params")
    @Validation(required = true)
    public String businessParams;
 
    @NameInMap("buyer_user_type")
    @Validation(required = true)
    public String buyerUserType;
 
    @NameInMap("mdiscount_amount")
    @Validation(required = true)
    public String mdiscountAmount;
 
    @NameInMap("discount_amount")
    @Validation(required = true)
    public String discountAmount;
 
    @NameInMap("buyer_user_name")
    @Validation(required = true)
    public String buyerUserName;
 
    public static AlipayTradePayResponse build(java.util.Map<String, ?> map) throws Exception {
        AlipayTradePayResponse self = new AlipayTradePayResponse();
        return TeaModel.build(map, self);
    }
 
    public AlipayTradePayResponse setHttpBody(String httpBody) {
        this.httpBody = httpBody;
        return this;
    }
    public String getHttpBody() {
        return this.httpBody;
    }
 
    public AlipayTradePayResponse setCode(String code) {
        this.code = code;
        return this;
    }
    public String getCode() {
        return this.code;
    }
 
    public AlipayTradePayResponse setMsg(String msg) {
        this.msg = msg;
        return this;
    }
    public String getMsg() {
        return this.msg;
    }
 
    public AlipayTradePayResponse setSubCode(String subCode) {
        this.subCode = subCode;
        return this;
    }
    public String getSubCode() {
        return this.subCode;
    }
 
    public AlipayTradePayResponse setSubMsg(String subMsg) {
        this.subMsg = subMsg;
        return this;
    }
    public String getSubMsg() {
        return this.subMsg;
    }
 
    public AlipayTradePayResponse setTradeNo(String tradeNo) {
        this.tradeNo = tradeNo;
        return this;
    }
    public String getTradeNo() {
        return this.tradeNo;
    }
 
    public AlipayTradePayResponse setOutTradeNo(String outTradeNo) {
        this.outTradeNo = outTradeNo;
        return this;
    }
    public String getOutTradeNo() {
        return this.outTradeNo;
    }
 
    public AlipayTradePayResponse setBuyerLogonId(String buyerLogonId) {
        this.buyerLogonId = buyerLogonId;
        return this;
    }
    public String getBuyerLogonId() {
        return this.buyerLogonId;
    }
 
    public AlipayTradePayResponse setSettleAmount(String settleAmount) {
        this.settleAmount = settleAmount;
        return this;
    }
    public String getSettleAmount() {
        return this.settleAmount;
    }
 
    public AlipayTradePayResponse setPayCurrency(String payCurrency) {
        this.payCurrency = payCurrency;
        return this;
    }
    public String getPayCurrency() {
        return this.payCurrency;
    }
 
    public AlipayTradePayResponse setPayAmount(String payAmount) {
        this.payAmount = payAmount;
        return this;
    }
    public String getPayAmount() {
        return this.payAmount;
    }
 
    public AlipayTradePayResponse setSettleTransRate(String settleTransRate) {
        this.settleTransRate = settleTransRate;
        return this;
    }
    public String getSettleTransRate() {
        return this.settleTransRate;
    }
 
    public AlipayTradePayResponse setTransPayRate(String transPayRate) {
        this.transPayRate = transPayRate;
        return this;
    }
    public String getTransPayRate() {
        return this.transPayRate;
    }
 
    public AlipayTradePayResponse setTotalAmount(String totalAmount) {
        this.totalAmount = totalAmount;
        return this;
    }
    public String getTotalAmount() {
        return this.totalAmount;
    }
 
    public AlipayTradePayResponse setTransCurrency(String transCurrency) {
        this.transCurrency = transCurrency;
        return this;
    }
    public String getTransCurrency() {
        return this.transCurrency;
    }
 
    public AlipayTradePayResponse setSettleCurrency(String settleCurrency) {
        this.settleCurrency = settleCurrency;
        return this;
    }
    public String getSettleCurrency() {
        return this.settleCurrency;
    }
 
    public AlipayTradePayResponse setReceiptAmount(String receiptAmount) {
        this.receiptAmount = receiptAmount;
        return this;
    }
    public String getReceiptAmount() {
        return this.receiptAmount;
    }
 
    public AlipayTradePayResponse setBuyerPayAmount(String buyerPayAmount) {
        this.buyerPayAmount = buyerPayAmount;
        return this;
    }
    public String getBuyerPayAmount() {
        return this.buyerPayAmount;
    }
 
    public AlipayTradePayResponse setPointAmount(String pointAmount) {
        this.pointAmount = pointAmount;
        return this;
    }
    public String getPointAmount() {
        return this.pointAmount;
    }
 
    public AlipayTradePayResponse setInvoiceAmount(String invoiceAmount) {
        this.invoiceAmount = invoiceAmount;
        return this;
    }
    public String getInvoiceAmount() {
        return this.invoiceAmount;
    }
 
    public AlipayTradePayResponse setGmtPayment(String gmtPayment) {
        this.gmtPayment = gmtPayment;
        return this;
    }
    public String getGmtPayment() {
        return this.gmtPayment;
    }
 
    public AlipayTradePayResponse setFundBillList(java.util.List<TradeFundBill> fundBillList) {
        this.fundBillList = fundBillList;
        return this;
    }
    public java.util.List<TradeFundBill> getFundBillList() {
        return this.fundBillList;
    }
 
    public AlipayTradePayResponse setCardBalance(String cardBalance) {
        this.cardBalance = cardBalance;
        return this;
    }
    public String getCardBalance() {
        return this.cardBalance;
    }
 
    public AlipayTradePayResponse setStoreName(String storeName) {
        this.storeName = storeName;
        return this;
    }
    public String getStoreName() {
        return this.storeName;
    }
 
    public AlipayTradePayResponse setBuyerUserId(String buyerUserId) {
        this.buyerUserId = buyerUserId;
        return this;
    }
    public String getBuyerUserId() {
        return this.buyerUserId;
    }
 
    public AlipayTradePayResponse setDiscountGoodsDetail(String discountGoodsDetail) {
        this.discountGoodsDetail = discountGoodsDetail;
        return this;
    }
    public String getDiscountGoodsDetail() {
        return this.discountGoodsDetail;
    }
 
    public AlipayTradePayResponse setVoucherDetailList(java.util.List<VoucherDetail> voucherDetailList) {
        this.voucherDetailList = voucherDetailList;
        return this;
    }
    public java.util.List<VoucherDetail> getVoucherDetailList() {
        return this.voucherDetailList;
    }
 
    public AlipayTradePayResponse setAdvanceAmount(String advanceAmount) {
        this.advanceAmount = advanceAmount;
        return this;
    }
    public String getAdvanceAmount() {
        return this.advanceAmount;
    }
 
    public AlipayTradePayResponse setAuthTradePayMode(String authTradePayMode) {
        this.authTradePayMode = authTradePayMode;
        return this;
    }
    public String getAuthTradePayMode() {
        return this.authTradePayMode;
    }
 
    public AlipayTradePayResponse setChargeAmount(String chargeAmount) {
        this.chargeAmount = chargeAmount;
        return this;
    }
    public String getChargeAmount() {
        return this.chargeAmount;
    }
 
    public AlipayTradePayResponse setChargeFlags(String chargeFlags) {
        this.chargeFlags = chargeFlags;
        return this;
    }
    public String getChargeFlags() {
        return this.chargeFlags;
    }
 
    public AlipayTradePayResponse setSettlementId(String settlementId) {
        this.settlementId = settlementId;
        return this;
    }
    public String getSettlementId() {
        return this.settlementId;
    }
 
    public AlipayTradePayResponse setBusinessParams(String businessParams) {
        this.businessParams = businessParams;
        return this;
    }
    public String getBusinessParams() {
        return this.businessParams;
    }
 
    public AlipayTradePayResponse setBuyerUserType(String buyerUserType) {
        this.buyerUserType = buyerUserType;
        return this;
    }
    public String getBuyerUserType() {
        return this.buyerUserType;
    }
 
    public AlipayTradePayResponse setMdiscountAmount(String mdiscountAmount) {
        this.mdiscountAmount = mdiscountAmount;
        return this;
    }
    public String getMdiscountAmount() {
        return this.mdiscountAmount;
    }
 
    public AlipayTradePayResponse setDiscountAmount(String discountAmount) {
        this.discountAmount = discountAmount;
        return this;
    }
    public String getDiscountAmount() {
        return this.discountAmount;
    }
 
    public AlipayTradePayResponse setBuyerUserName(String buyerUserName) {
        this.buyerUserName = buyerUserName;
        return this;
    }
    public String getBuyerUserName() {
        return this.buyerUserName;
    }
 
}