com.aliyun.dingtalkbizfinance_2_0.models.QueryEnterpriseAccountByPageResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_2_0.models;
import com.aliyun.tea.*;
public class QueryEnterpriseAccountByPageResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* true
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* This parameter is required.
*/
@NameInMap("list")
public java.util.List list;
public static QueryEnterpriseAccountByPageResponseBody build(java.util.Map map) throws Exception {
QueryEnterpriseAccountByPageResponseBody self = new QueryEnterpriseAccountByPageResponseBody();
return TeaModel.build(map, self);
}
public QueryEnterpriseAccountByPageResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public QueryEnterpriseAccountByPageResponseBody setList(java.util.List list) {
this.list = list;
return this;
}
public java.util.List getList() {
return this.list;
}
public static class QueryEnterpriseAccountByPageResponseBodyList extends TeaModel {
/**
* This parameter is required.
*
* example:
* 12345
*/
@NameInMap("accountCode")
public String accountCode;
/**
* example:
*
*/
@NameInMap("accountId")
public String accountId;
/**
* This parameter is required.
*
* example:
* 网商银行
*/
@NameInMap("accountName")
public String accountName;
/**
* example:
* test
*/
@NameInMap("accountRemark")
public String accountRemark;
/**
* This parameter is required.
*
* example:
* ALIPAY
*/
@NameInMap("accountType")
public String accountType;
/**
* example:
* 10000.33
*/
@NameInMap("amount")
public String amount;
@NameInMap("bankCode")
public String bankCode;
@NameInMap("bankName")
public String bankName;
/**
* This parameter is required.
*
* example:
* 1631526550994
*/
@NameInMap("createTime")
public Long createTime;
/**
* This parameter is required.
*
* example:
* aaa
*/
@NameInMap("creator")
public String creator;
public static QueryEnterpriseAccountByPageResponseBodyList build(java.util.Map map) throws Exception {
QueryEnterpriseAccountByPageResponseBodyList self = new QueryEnterpriseAccountByPageResponseBodyList();
return TeaModel.build(map, self);
}
public QueryEnterpriseAccountByPageResponseBodyList setAccountCode(String accountCode) {
this.accountCode = accountCode;
return this;
}
public String getAccountCode() {
return this.accountCode;
}
public QueryEnterpriseAccountByPageResponseBodyList setAccountId(String accountId) {
this.accountId = accountId;
return this;
}
public String getAccountId() {
return this.accountId;
}
public QueryEnterpriseAccountByPageResponseBodyList setAccountName(String accountName) {
this.accountName = accountName;
return this;
}
public String getAccountName() {
return this.accountName;
}
public QueryEnterpriseAccountByPageResponseBodyList setAccountRemark(String accountRemark) {
this.accountRemark = accountRemark;
return this;
}
public String getAccountRemark() {
return this.accountRemark;
}
public QueryEnterpriseAccountByPageResponseBodyList setAccountType(String accountType) {
this.accountType = accountType;
return this;
}
public String getAccountType() {
return this.accountType;
}
public QueryEnterpriseAccountByPageResponseBodyList setAmount(String amount) {
this.amount = amount;
return this;
}
public String getAmount() {
return this.amount;
}
public QueryEnterpriseAccountByPageResponseBodyList setBankCode(String bankCode) {
this.bankCode = bankCode;
return this;
}
public String getBankCode() {
return this.bankCode;
}
public QueryEnterpriseAccountByPageResponseBodyList setBankName(String bankName) {
this.bankName = bankName;
return this;
}
public String getBankName() {
return this.bankName;
}
public QueryEnterpriseAccountByPageResponseBodyList setCreateTime(Long createTime) {
this.createTime = createTime;
return this;
}
public Long getCreateTime() {
return this.createTime;
}
public QueryEnterpriseAccountByPageResponseBodyList setCreator(String creator) {
this.creator = creator;
return this;
}
public String getCreator() {
return this.creator;
}
}
}