All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkindustry_1_0.models.QueryAllGroupResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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 {
    // Id of the request
    @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 {
        // 所在科室Id
        @NameInMap("deptId")
        public Long deptId;

        // 医疗组Id
        @NameInMap("id")
        public Long id;

        // 医疗组名称
        @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 - 2024 Weber Informatics LLC | Privacy Policy