puzhibing
2023-05-18 53562814add61acfdc02d6b25dae6324f6fd5f92
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
package com.stylefeng.guns.modular.system.util.Tingg.model;
 
 
public class CheckoutRequest {
    /**
     * 电话号码
     */
    private Long msisdn;
    /**
     * 邮件地址
     */
    private String customerEmail;
    /**
     * 支付账户
     */
    private String accountNumber;
    /**
     * 名
     */
    private String customerFirstName;
    /**
     * 姓
     */
    private String customerLastName;
    /**
     * 支付金额
     */
    private Double requestAmount;
    /**
     * 订单号
     */
    private String merchantTransactionId;
    /**
     * 描述
     */
    private String requestDescription;
    /**
     * 回调地址
     */
    private String callbackUrl;
    /**
     * 在客户点击回到商家后,我们将客户重定向到哪里
     */
    private String pendingRedirectUrl;
    /**
     * 成功付款后将客户重定向到那里
     */
    private String successRedirectUrl;
    /**
     * 付款超时后的重定向
     */
    private String failRedirectUrl;
 
    public Long getMsisdn() {
        return msisdn;
    }
 
    public void setMsisdn(Long msisdn) {
        this.msisdn = msisdn;
    }
 
    public String getCustomerEmail() {
        return customerEmail;
    }
 
    public void setCustomerEmail(String customerEmail) {
        this.customerEmail = customerEmail;
    }
 
    public String getAccountNumber() {
        return accountNumber;
    }
 
    public void setAccountNumber(String accountNumber) {
        this.accountNumber = accountNumber;
    }
 
    public String getCustomerFirstName() {
        return customerFirstName;
    }
 
    public void setCustomerFirstName(String customerFirstName) {
        this.customerFirstName = customerFirstName;
    }
 
    public String getCustomerLastName() {
        return customerLastName;
    }
 
    public void setCustomerLastName(String customerLastName) {
        this.customerLastName = customerLastName;
    }
 
    public Double getRequestAmount() {
        return requestAmount;
    }
 
    public void setRequestAmount(Double requestAmount) {
        this.requestAmount = requestAmount;
    }
 
    public String getMerchantTransactionId() {
        return merchantTransactionId;
    }
 
    public void setMerchantTransactionId(String merchantTransactionId) {
        this.merchantTransactionId = merchantTransactionId;
    }
 
    public String getRequestDescription() {
        return requestDescription;
    }
 
    public void setRequestDescription(String requestDescription) {
        this.requestDescription = requestDescription;
    }
 
    public String getCallbackUrl() {
        return callbackUrl;
    }
 
    public void setCallbackUrl(String callbackUrl) {
        this.callbackUrl = callbackUrl;
    }
 
    public String getPendingRedirectUrl() {
        return pendingRedirectUrl;
    }
 
    public void setPendingRedirectUrl(String pendingRedirectUrl) {
        this.pendingRedirectUrl = pendingRedirectUrl;
    }
 
    public String getSuccessRedirectUrl() {
        return successRedirectUrl;
    }
 
    public void setSuccessRedirectUrl(String successRedirectUrl) {
        this.successRedirectUrl = successRedirectUrl;
    }
 
    public String getFailRedirectUrl() {
        return failRedirectUrl;
    }
 
    public void setFailRedirectUrl(String failRedirectUrl) {
        this.failRedirectUrl = failRedirectUrl;
    }
}