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
// This file is auto-generated, don't edit it. Thanks.
package com.alipay.easysdk.payment.facetoface.models;
 
import com.aliyun.tea.*;
 
public class TradeFundBill extends TeaModel {
    @NameInMap("fund_channel")
    @Validation(required = true)
    public String fundChannel;
 
    @NameInMap("bank_code")
    @Validation(required = true)
    public String bankCode;
 
    @NameInMap("amount")
    @Validation(required = true)
    public String amount;
 
    @NameInMap("real_amount")
    @Validation(required = true)
    public String realAmount;
 
    public static TradeFundBill build(java.util.Map<String, ?> map) throws Exception {
        TradeFundBill self = new TradeFundBill();
        return TeaModel.build(map, self);
    }
 
    public TradeFundBill setFundChannel(String fundChannel) {
        this.fundChannel = fundChannel;
        return this;
    }
    public String getFundChannel() {
        return this.fundChannel;
    }
 
    public TradeFundBill setBankCode(String bankCode) {
        this.bankCode = bankCode;
        return this;
    }
    public String getBankCode() {
        return this.bankCode;
    }
 
    public TradeFundBill setAmount(String amount) {
        this.amount = amount;
        return this;
    }
    public String getAmount() {
        return this.amount;
    }
 
    public TradeFundBill setRealAmount(String realAmount) {
        this.realAmount = realAmount;
        return this;
    }
    public String getRealAmount() {
        return this.realAmount;
    }
 
}