
com.nextpls.sdk.pojo.response.NextPlsTxnStatusResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Use to connect to the nextpls
The newest version!
package com.nextpls.sdk.pojo.response;
/**
* @author Elliott
* @create 2020-01-10-18:09
*/
public class NextPlsTxnStatusResponse {
/**
* 订单编号
*/
private String txnNo;
/**
* 第三方订单编号
*/
private String clientTxnNo;
/**
* 参考码(现金取款码)
*/
private String reference;
/**
* 订单状态
*/
private String status;
/**
* 订单错误码
*/
private String errorCode;
/**
* 错误信息
*/
private String errorMsg;
public String getTxnNo() {
return txnNo;
}
public void setTxnNo(String txnNo) {
this.txnNo = txnNo;
}
public String getClientTxnNo() {
return clientTxnNo;
}
public void setClientTxnNo(String clientTxnNo) {
this.clientTxnNo = clientTxnNo;
}
public String getReference() {
return reference;
}
public void setReference(String reference) {
this.reference = reference;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getErrorMsg() {
return errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getErrorCode() {
return errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy