com.aliyun.dingtalkindustry_1_0.models.QueryAllMemberByDeptResponseBody 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class QueryAllMemberByDeptResponseBody extends TeaModel {
// 人员列表
@NameInMap("content")
public java.util.List content;
// 当前页码
@NameInMap("currentPage")
public Integer currentPage;
// 数据总量
@NameInMap("totalCount")
public Long totalCount;
// 总页数
@NameInMap("totalPages")
public Integer totalPages;
public static QueryAllMemberByDeptResponseBody build(java.util.Map map) throws Exception {
QueryAllMemberByDeptResponseBody self = new QueryAllMemberByDeptResponseBody();
return TeaModel.build(map, self);
}
public QueryAllMemberByDeptResponseBody setContent(java.util.List content) {
this.content = content;
return this;
}
public java.util.List getContent() {
return this.content;
}
public QueryAllMemberByDeptResponseBody setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public QueryAllMemberByDeptResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public QueryAllMemberByDeptResponseBody setTotalPages(Integer totalPages) {
this.totalPages = totalPages;
return this;
}
public Integer getTotalPages() {
return this.totalPages;
}
public static class QueryAllMemberByDeptResponseBodyContent extends TeaModel {
// 工号
@NameInMap("jobNum")
public String jobNum;
// 用户Id
@NameInMap("uid")
public String uid;
// 用户名称
@NameInMap("userName")
public String userName;
public static QueryAllMemberByDeptResponseBodyContent build(java.util.Map map) throws Exception {
QueryAllMemberByDeptResponseBodyContent self = new QueryAllMemberByDeptResponseBodyContent();
return TeaModel.build(map, self);
}
public QueryAllMemberByDeptResponseBodyContent setJobNum(String jobNum) {
this.jobNum = jobNum;
return this;
}
public String getJobNum() {
return this.jobNum;
}
public QueryAllMemberByDeptResponseBodyContent setUid(String uid) {
this.uid = uid;
return this;
}
public String getUid() {
return this.uid;
}
public QueryAllMemberByDeptResponseBodyContent setUserName(String userName) {
this.userName = userName;
return this;
}
public String getUserName() {
return this.userName;
}
}
}