com.aliyun.dingtalkdatacenter_1_0.models.SearchCompanyResponseBody 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.dingtalkdatacenter_1_0.models;
import com.aliyun.tea.*;
public class SearchCompanyResponseBody extends TeaModel {
/**
* example:
* [ { "ENT_NAME": "xx", "SOCIAL_CREDIT_CODE": "xx", "LICENSE_NUMBER": "xx", "REG_CAP": "10000000.0", "ES_DATE": "2006-12-07", "LEGAL_NAME": "xx", "ORG_NO": "xx", "TAX_NUM": "xx", "ENT_STATUS": "在营" } ]
*/
@NameInMap("data")
public String data;
@NameInMap("total")
public Long total;
public static SearchCompanyResponseBody build(java.util.Map map) throws Exception {
SearchCompanyResponseBody self = new SearchCompanyResponseBody();
return TeaModel.build(map, self);
}
public SearchCompanyResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public SearchCompanyResponseBody setTotal(Long total) {
this.total = total;
return this;
}
public Long getTotal() {
return this.total;
}
}