You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
3.3 KiB
150 lines
3.3 KiB
2 years ago
|
package com.ynxbd.bcm.bean.pmssMpng;
|
||
|
|
||
|
import com.bocom.api.BocomResponse;
|
||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||
|
|
||
|
public class MPNG210001ResponseV1 extends BocomResponse {
|
||
|
/**
|
||
|
* "rsp_body"
|
||
|
*/
|
||
|
@JsonProperty("rsp_body")
|
||
|
private RspBody rspBody;
|
||
|
|
||
|
public static class RspBody {
|
||
|
/**
|
||
|
* 门店识别号
|
||
|
*/
|
||
|
@JsonProperty("shop_id")
|
||
|
private String shopId;
|
||
|
|
||
|
/**
|
||
|
* 商户交易编号
|
||
|
*/
|
||
|
@JsonProperty("pay_mer_tran_no")
|
||
|
private String payMerTranNo;
|
||
|
|
||
|
/**
|
||
|
* 收款二维码文本
|
||
|
*/
|
||
|
@JsonProperty("display_code_text")
|
||
|
private String displayCodeText;
|
||
|
|
||
|
public String getShopId() {
|
||
|
return shopId;
|
||
|
}
|
||
|
|
||
|
public void setShopId(String shopId) {
|
||
|
this.shopId = shopId;
|
||
|
}
|
||
|
|
||
|
public String getPayMerTranNo() {
|
||
|
return payMerTranNo;
|
||
|
}
|
||
|
|
||
|
public void setPayMerTranNo(String payMerTranNo) {
|
||
|
this.payMerTranNo = payMerTranNo;
|
||
|
}
|
||
|
|
||
|
public String getDisplayCodeText() {
|
||
|
return displayCodeText;
|
||
|
}
|
||
|
|
||
|
public void setDisplayCodeText(String displayCodeText) {
|
||
|
this.displayCodeText = displayCodeText;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* "rsp_head"
|
||
|
*/
|
||
|
@JsonProperty("rsp_head")
|
||
|
private RspHead rspHead;
|
||
|
|
||
|
public static class RspHead {
|
||
|
/**
|
||
|
* 交易标识
|
||
|
*/
|
||
|
@JsonProperty("trans_code")
|
||
|
private String transCode;
|
||
|
|
||
|
/**
|
||
|
* 返回码
|
||
|
*/
|
||
|
@JsonProperty("response_code")
|
||
|
private String responseCode;
|
||
|
|
||
|
/**
|
||
|
* 交易状态 P-处理中 F-失败 S-成功
|
||
|
*/
|
||
|
@JsonProperty("response_status")
|
||
|
private String responseStatus;
|
||
|
|
||
|
/**
|
||
|
* 响应时间
|
||
|
*/
|
||
|
@JsonProperty("response_time")
|
||
|
private String responseTime;
|
||
|
|
||
|
/**
|
||
|
* 返回码描述
|
||
|
*/
|
||
|
@JsonProperty("response_msg")
|
||
|
private String responseMsg;
|
||
|
|
||
|
public String getTransCode() {
|
||
|
return transCode;
|
||
|
}
|
||
|
|
||
|
public void setTransCode(String transCode) {
|
||
|
this.transCode = transCode;
|
||
|
}
|
||
|
|
||
|
public String getResponseCode() {
|
||
|
return responseCode;
|
||
|
}
|
||
|
|
||
|
public void setResponseCode(String responseCode) {
|
||
|
this.responseCode = responseCode;
|
||
|
}
|
||
|
|
||
|
public String getResponseStatus() {
|
||
|
return responseStatus;
|
||
|
}
|
||
|
|
||
|
public void setResponseStatus(String responseStatus) {
|
||
|
this.responseStatus = responseStatus;
|
||
|
}
|
||
|
|
||
|
public String getResponseTime() {
|
||
|
return responseTime;
|
||
|
}
|
||
|
|
||
|
public void setResponseTime(String responseTime) {
|
||
|
this.responseTime = responseTime;
|
||
|
}
|
||
|
|
||
|
public String getResponseMsg() {
|
||
|
return responseMsg;
|
||
|
}
|
||
|
|
||
|
public void setResponseMsg(String responseMsg) {
|
||
|
this.responseMsg = responseMsg;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public RspBody getRspBody() {
|
||
|
return rspBody;
|
||
|
}
|
||
|
|
||
|
public void setRspBody(RspBody rspBody) {
|
||
|
this.rspBody = rspBody;
|
||
|
}
|
||
|
|
||
|
public RspHead getRspHead() {
|
||
|
return rspHead;
|
||
|
}
|
||
|
|
||
|
public void setRspHead(RspHead rspHead) {
|
||
|
this.rspHead = rspHead;
|
||
|
}
|
||
|
}
|