com.yunzhanghu.sdk.invoice.domain.BankNameAccount 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.invoice.domain;
import com.google.gson.annotations.SerializedName;
// 系统支持的开户行及账号
public class BankNameAccount {
// 开户行及账号
private String item;
// 是否为默认值
@SerializedName("default")
private boolean _default;
public void setItem(String item) {
this.item = item;
}
public String getItem() {
return item;
}
public void setDefault(boolean _default) {
this._default = _default;
}
public boolean getDefault() {
return _default;
}
@Override
public String toString() {
return "BankNameAccount{" +
" item='" + item + '\'' +
", _default='" + _default + '\'' +
"}";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy