com.alipay.api.domain.AlipayBossFncWallstreetRcvbankaccountinfoQueryModel 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, 2024-03-07 11:06:13
*/
public class AlipayBossFncWallstreetRcvbankaccountinfoQueryModel extends AlipayObject {
private static final long serialVersionUID = 6651424885171868974L;
/**
* 币种编码
*/
@ApiField("currency_code")
private String currencyCode;
/**
* 组织ID
*/
@ApiField("org_id")
private Long orgId;
public String getCurrencyCode() {
return this.currencyCode;
}
public void setCurrencyCode(String currencyCode) {
this.currencyCode = currencyCode;
}
public Long getOrgId() {
return this.orgId;
}
public void setOrgId(Long orgId) {
this.orgId = orgId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy