com.alipay.api.domain.AccountBaseInfoVO 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-02-25 14:40:37
*/
public class AccountBaseInfoVO extends AlipayObject {
private static final long serialVersionUID = 6269611995224931657L;
/**
* 账户号
*/
@ApiField("act_no")
private String actNo;
/**
* 账户状态:A-开户成功,N-未开户,F-账户异常
*/
@ApiField("act_status")
private String actStatus;
/**
* 账户类型
*/
@ApiField("act_type")
private String actType;
public String getActNo() {
return this.actNo;
}
public void setActNo(String actNo) {
this.actNo = actNo;
}
public String getActStatus() {
return this.actStatus;
}
public void setActStatus(String actStatus) {
this.actStatus = actStatus;
}
public String getActType() {
return this.actType;
}
public void setActType(String actType) {
this.actType = actType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy