
com.aliyun.dingtalkindustry_1_0.models.QueryAllGroupResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class QueryAllGroupResponseBody extends TeaModel {
@NameInMap("content")
public java.util.List content;
@NameInMap("currentPage")
public Long currentPage;
@NameInMap("totalCount")
public Long totalCount;
@NameInMap("totalPages")
public Long totalPages;
public static QueryAllGroupResponseBody build(java.util.Map map) throws Exception {
QueryAllGroupResponseBody self = new QueryAllGroupResponseBody();
return TeaModel.build(map, self);
}
public QueryAllGroupResponseBody setContent(java.util.List content) {
this.content = content;
return this;
}
public java.util.List getContent() {
return this.content;
}
public QueryAllGroupResponseBody setCurrentPage(Long currentPage) {
this.currentPage = currentPage;
return this;
}
public Long getCurrentPage() {
return this.currentPage;
}
public QueryAllGroupResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public QueryAllGroupResponseBody setTotalPages(Long totalPages) {
this.totalPages = totalPages;
return this;
}
public Long getTotalPages() {
return this.totalPages;
}
public static class QueryAllGroupResponseBodyContent extends TeaModel {
/**
* example:
* 12
*/
@NameInMap("deptId")
public Long deptId;
/**
* example:
* 1
*/
@NameInMap("id")
public Long id;
/**
* example:
* 医疗组1
*/
@NameInMap("name")
public String name;
public static QueryAllGroupResponseBodyContent build(java.util.Map map) throws Exception {
QueryAllGroupResponseBodyContent self = new QueryAllGroupResponseBodyContent();
return TeaModel.build(map, self);
}
public QueryAllGroupResponseBodyContent setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public QueryAllGroupResponseBodyContent setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public QueryAllGroupResponseBodyContent setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy