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

com.aliyun.dingtalkindustry_1_0.models.QueryAllGroupsInDeptResponseBody 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 QueryAllGroupsInDeptResponseBody 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 QueryAllGroupsInDeptResponseBody build(java.util.Map map) throws Exception {
        QueryAllGroupsInDeptResponseBody self = new QueryAllGroupsInDeptResponseBody();
        return TeaModel.build(map, self);
    }

    public QueryAllGroupsInDeptResponseBody setContent(java.util.List content) {
        this.content = content;
        return this;
    }
    public java.util.List getContent() {
        return this.content;
    }

    public QueryAllGroupsInDeptResponseBody setCurrentPage(Long currentPage) {
        this.currentPage = currentPage;
        return this;
    }
    public Long getCurrentPage() {
        return this.currentPage;
    }

    public QueryAllGroupsInDeptResponseBody setTotalCount(Long totalCount) {
        this.totalCount = totalCount;
        return this;
    }
    public Long getTotalCount() {
        return this.totalCount;
    }

    public QueryAllGroupsInDeptResponseBody setTotalPages(Long totalPages) {
        this.totalPages = totalPages;
        return this;
    }
    public Long getTotalPages() {
        return this.totalPages;
    }

    public static class QueryAllGroupsInDeptResponseBodyContent extends TeaModel {
        // 所在科室Id
        @NameInMap("deptId")
        public Long deptId;

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

        // 医疗组名称
        @NameInMap("name")
        public String name;

        public static QueryAllGroupsInDeptResponseBodyContent build(java.util.Map map) throws Exception {
            QueryAllGroupsInDeptResponseBodyContent self = new QueryAllGroupsInDeptResponseBodyContent();
            return TeaModel.build(map, self);
        }

        public QueryAllGroupsInDeptResponseBodyContent setDeptId(Long deptId) {
            this.deptId = deptId;
            return this;
        }
        public Long getDeptId() {
            return this.deptId;
        }

        public QueryAllGroupsInDeptResponseBodyContent setId(Long id) {
            this.id = id;
            return this;
        }
        public Long getId() {
            return this.id;
        }

        public QueryAllGroupsInDeptResponseBodyContent setName(String name) {
            this.name = name;
            return this;
        }
        public String getName() {
            return this.name;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy