![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkbizfinance_1_0.models.QuerySupplierByPageResponseBody 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_1_0.models;
import com.aliyun.tea.*;
public class QuerySupplierByPageResponseBody 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 QuerySupplierByPageResponseBody build(java.util.Map map) throws Exception {
QuerySupplierByPageResponseBody self = new QuerySupplierByPageResponseBody();
return TeaModel.build(map, self);
}
public QuerySupplierByPageResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public QuerySupplierByPageResponseBody setList(java.util.List list) {
this.list = list;
return this;
}
public java.util.List getList() {
return this.list;
}
public static class QuerySupplierByPageResponseBodyList extends TeaModel {
/**
* This parameter is required.
*
* example:
* SUP_XXX
*/
@NameInMap("code")
public String code;
/**
* This parameter is required.
*
* example:
* 1634786828686
*/
@NameInMap("createTime")
public Long createTime;
/**
* This parameter is required.
*
* example:
* 原材料供应商
*/
@NameInMap("description")
public String description;
/**
* This parameter is required.
*
* example:
* XX供应商
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* valid
*/
@NameInMap("status")
public String status;
@NameInMap("userDefineCode")
public String userDefineCode;
public static QuerySupplierByPageResponseBodyList build(java.util.Map map) throws Exception {
QuerySupplierByPageResponseBodyList self = new QuerySupplierByPageResponseBodyList();
return TeaModel.build(map, self);
}
public QuerySupplierByPageResponseBodyList setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public QuerySupplierByPageResponseBodyList setCreateTime(Long createTime) {
this.createTime = createTime;
return this;
}
public Long getCreateTime() {
return this.createTime;
}
public QuerySupplierByPageResponseBodyList setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public QuerySupplierByPageResponseBodyList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public QuerySupplierByPageResponseBodyList setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public QuerySupplierByPageResponseBodyList setUserDefineCode(String userDefineCode) {
this.userDefineCode = userDefineCode;
return this;
}
public String getUserDefineCode() {
return this.userDefineCode;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy