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;
|
}
|
}
|