com.yunzhanghu.sdk.payment.domain.CreateBankpayOrderResponse 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
云账户综合服务平台官方 SDK for Java,支持 Java JDK 1.8 及以上版本
Copyright © 2013 - 2024 云账户技术(天津)有限公司
云账户开放平台:https://open.yunzhanghu.com
package com.yunzhanghu.sdk.payment.domain;
// 银行卡实时支付返回
public class CreateBankpayOrderResponse {
// 平台企业订单号
private String orderId;
// 综合服务平台流水号
private String ref;
// 订单金额
private String pay;
public void setOrderId(String orderId) {
this.orderId = orderId;
}
public String getOrderId() {
return orderId;
}
public void setRef(String ref) {
this.ref = ref;
}
public String getRef() {
return ref;
}
public void setPay(String pay) {
this.pay = pay;
}
public String getPay() {
return pay;
}
@Override
public String toString() {
return "CreateBankpayOrderResponse{" +
" orderId='" + orderId + '\'' +
", ref='" + ref + '\'' +
", pay='" + pay + '\'' +
"}";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy