com.alipay.api.domain.AlipayFundBailOrderMigrateModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 保证金资金迁移
*
* @author auto create
* @since 1.0, 2022-12-20 21:32:49
*/
public class AlipayFundBailOrderMigrateModel extends AlipayObject {
private static final long serialVersionUID = 5446449498646476428L;
/**
* 保证金协议号
*/
@ApiField("agreement_no")
private String agreementNo;
/**
* 扩展参数
*/
@ApiField("extra_param")
private String extraParam;
/**
* 外部请求号
*/
@ApiField("out_request_no")
private String outRequestNo;
/**
* 产品码
*/
@ApiField("product_code")
private String productCode;
/**
* 备注
*/
@ApiField("remark")
private String remark;
public String getAgreementNo() {
return this.agreementNo;
}
public void setAgreementNo(String agreementNo) {
this.agreementNo = agreementNo;
}
public String getExtraParam() {
return this.extraParam;
}
public void setExtraParam(String extraParam) {
this.extraParam = extraParam;
}
public String getOutRequestNo() {
return this.outRequestNo;
}
public void setOutRequestNo(String outRequestNo) {
this.outRequestNo = outRequestNo;
}
public String getProductCode() {
return this.productCode;
}
public void setProductCode(String productCode) {
this.productCode = productCode;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy