com.aliyun.dingtalkbizfinance_2_0.models.GetSupplierResponseBody 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 GetSupplierResponseBody extends TeaModel {
@NameInMap("accountantBookIdList")
public java.util.List accountantBookIdList;
/**
* 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 GetSupplierResponseBody build(java.util.Map map) throws Exception {
GetSupplierResponseBody self = new GetSupplierResponseBody();
return TeaModel.build(map, self);
}
public GetSupplierResponseBody setAccountantBookIdList(java.util.List accountantBookIdList) {
this.accountantBookIdList = accountantBookIdList;
return this;
}
public java.util.List getAccountantBookIdList() {
return this.accountantBookIdList;
}
public GetSupplierResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public GetSupplierResponseBody setCreateTime(Long createTime) {
this.createTime = createTime;
return this;
}
public Long getCreateTime() {
return this.createTime;
}
public GetSupplierResponseBody setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public GetSupplierResponseBody setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetSupplierResponseBody setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public GetSupplierResponseBody setUserDefineCode(String userDefineCode) {
this.userDefineCode = userDefineCode;
return this;
}
public String getUserDefineCode() {
return this.userDefineCode;
}
}