All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.SpAccountInfoVo Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.39.218.ALL
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 机构专户信息模型
 *
 * @author auto create
 * @since 1.0, 2024-06-03 10:07:09
 */
public class SpAccountInfoVo extends AlipayObject {

	private static final long serialVersionUID = 4359111914471576571L;

	/**
	 * 机构专户开户银行名称
	 */
	@ApiField("account_inst_name")
	private String accountInstName;

	/**
	 * 账户名称(个人对应真实姓名,企业用户对应是企业注册名)
	 */
	@ApiField("account_name")
	private String accountName;

	/**
	 * 开户银行的分支行完整名称
	 */
	@ApiField("inst_branch_name")
	private String instBranchName;

	/**
	 * 开户行所在省市信息
	 */
	@ApiField("inst_location")
	private String instLocation;

	/**
	 * 机构专户账号
	 */
	@ApiField("sp_account_no")
	private String spAccountNo;

	public String getAccountInstName() {
		return this.accountInstName;
	}
	public void setAccountInstName(String accountInstName) {
		this.accountInstName = accountInstName;
	}

	public String getAccountName() {
		return this.accountName;
	}
	public void setAccountName(String accountName) {
		this.accountName = accountName;
	}

	public String getInstBranchName() {
		return this.instBranchName;
	}
	public void setInstBranchName(String instBranchName) {
		this.instBranchName = instBranchName;
	}

	public String getInstLocation() {
		return this.instLocation;
	}
	public void setInstLocation(String instLocation) {
		this.instLocation = instLocation;
	}

	public String getSpAccountNo() {
		return this.spAccountNo;
	}
	public void setSpAccountNo(String spAccountNo) {
		this.spAccountNo = spAccountNo;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy