com.alipay.api.response.AlipayFundJointaccountMemberConsultResponse 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.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.MemberStatusRespDTO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.fund.jointaccount.member.consult response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:31:58
*/
public class AlipayFundJointaccountMemberConsultResponse extends AlipayResponse {
private static final long serialVersionUID = 6771489625642784588L;
/**
* 企业ID
*/
@ApiField("account_id")
private String accountId;
/**
* 返回码
10000-成功
其他都是失败
*/
@ApiField("code")
private String code;
/**
* 员工列表
*/
@ApiListField("member_list")
@ApiField("member_status_resp_d_t_o")
private List memberList;
/**
* 描述信息
*/
@ApiField("msg")
private String msg;
public void setAccountId(String accountId) {
this.accountId = accountId;
}
public String getAccountId( ) {
return this.accountId;
}
public void setCode(String code) {
this.code = code;
}
public String getCode( ) {
return this.code;
}
public void setMemberList(List memberList) {
this.memberList = memberList;
}
public List getMemberList( ) {
return this.memberList;
}
public void setMsg(String msg) {
this.msg = msg;
}
public String getMsg( ) {
return this.msg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy