![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkbizfinance_2_0.models.QueryProjectByPageResponseBody 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 QueryProjectByPageResponseBody 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 QueryProjectByPageResponseBody build(java.util.Map map) throws Exception {
QueryProjectByPageResponseBody self = new QueryProjectByPageResponseBody();
return TeaModel.build(map, self);
}
public QueryProjectByPageResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public QueryProjectByPageResponseBody setList(java.util.List list) {
this.list = list;
return this;
}
public java.util.List getList() {
return this.list;
}
public static class QueryProjectByPageResponseBodyList extends TeaModel {
@NameInMap("caode")
public String caode;
@NameInMap("code")
public String code;
/**
* This parameter is required.
*
* example:
* 1631524595555
*/
@NameInMap("createTime")
public Long createTime;
/**
* This parameter is required.
*
* example:
* aaaa
*/
@NameInMap("creator")
public String creator;
/**
* example:
* 外派项目
*/
@NameInMap("description")
public String description;
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* PROJ-xxx
*/
@NameInMap("projectCode")
public String projectCode;
/**
* This parameter is required.
*
* example:
* 外派项目
*/
@NameInMap("projectName")
public String projectName;
/**
* This parameter is required.
*
* example:
* valid
*/
@NameInMap("status")
public String status;
@NameInMap("userDefineCode")
public String userDefineCode;
public static QueryProjectByPageResponseBodyList build(java.util.Map map) throws Exception {
QueryProjectByPageResponseBodyList self = new QueryProjectByPageResponseBodyList();
return TeaModel.build(map, self);
}
public QueryProjectByPageResponseBodyList setCaode(String caode) {
this.caode = caode;
return this;
}
public String getCaode() {
return this.caode;
}
public QueryProjectByPageResponseBodyList setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public QueryProjectByPageResponseBodyList setCreateTime(Long createTime) {
this.createTime = createTime;
return this;
}
public Long getCreateTime() {
return this.createTime;
}
public QueryProjectByPageResponseBodyList setCreator(String creator) {
this.creator = creator;
return this;
}
public String getCreator() {
return this.creator;
}
public QueryProjectByPageResponseBodyList setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public QueryProjectByPageResponseBodyList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public QueryProjectByPageResponseBodyList setProjectCode(String projectCode) {
this.projectCode = projectCode;
return this;
}
public String getProjectCode() {
return this.projectCode;
}
public QueryProjectByPageResponseBodyList setProjectName(String projectName) {
this.projectName = projectName;
return this;
}
public String getProjectName() {
return this.projectName;
}
public QueryProjectByPageResponseBodyList setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public QueryProjectByPageResponseBodyList setUserDefineCode(String userDefineCode) {
this.userDefineCode = userDefineCode;
return this;
}
public String getUserDefineCode() {
return this.userDefineCode;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy