package com.walker.pay.allinpaycloud.pojo;
|
|
public class RequestConfirmPay {
|
|
public String getBizUserId() {
|
return bizUserId;
|
}
|
|
public void setBizUserId(String bizUserId) {
|
this.bizUserId = bizUserId;
|
}
|
|
public String getBizOrderNo() {
|
return bizOrderNo;
|
}
|
|
/**
|
* 订单申请的商户订单号(支付订单)
|
* @param bizOrderNo
|
*/
|
public void setBizOrderNo(String bizOrderNo) {
|
this.bizOrderNo = bizOrderNo;
|
}
|
|
public String getVerificationCode() {
|
return verificationCode;
|
}
|
|
/**
|
* 短信验证码
|
* @param verificationCode
|
*/
|
public void setVerificationCode(String verificationCode) {
|
this.verificationCode = verificationCode;
|
}
|
|
public String getConsumerIp() {
|
return consumerIp;
|
}
|
|
/**
|
* ip地址<br>
|
* 用户公网IP用于风控校验,
|
* 注:不能使用“127.0.0.1”“localhost”
|
* @param consumerIp
|
*/
|
public void setConsumerIp(String consumerIp) {
|
this.consumerIp = consumerIp;
|
}
|
|
private String bizUserId;
|
private String bizOrderNo;
|
private String verificationCode;
|
private String consumerIp;
|
}
|