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

com.aliyun.dingtalkindustry_1_0.models.QueryDepartmentExtendInfoResponseBody 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 QueryDepartmentExtendInfoResponseBody extends TeaModel {
    // 扩展属性列表
    @NameInMap("content")
    public java.util.List content;

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

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

    public static class QueryDepartmentExtendInfoResponseBodyContent extends TeaModel {
        // 科室或医疗组code
        @NameInMap("deptCode")
        public String deptCode;

        // 扩展属性显示名称
        @NameInMap("deptExtendDisplayName")
        public String deptExtendDisplayName;

        // 扩展属性key
        @NameInMap("deptExtendKey")
        public String deptExtendKey;

        // 扩展属性value
        @NameInMap("deptExtendValue")
        public String deptExtendValue;

        // 创建时间
        @NameInMap("gmtCreateStr")
        public String gmtCreateStr;

        // 修改时间
        @NameInMap("gmtModifiedStr")
        public String gmtModifiedStr;

        // id
        @NameInMap("id")
        public Long id;

        // 删除标识
        @NameInMap("status")
        public Integer status;

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

        public QueryDepartmentExtendInfoResponseBodyContent setDeptCode(String deptCode) {
            this.deptCode = deptCode;
            return this;
        }
        public String getDeptCode() {
            return this.deptCode;
        }

        public QueryDepartmentExtendInfoResponseBodyContent setDeptExtendDisplayName(String deptExtendDisplayName) {
            this.deptExtendDisplayName = deptExtendDisplayName;
            return this;
        }
        public String getDeptExtendDisplayName() {
            return this.deptExtendDisplayName;
        }

        public QueryDepartmentExtendInfoResponseBodyContent setDeptExtendKey(String deptExtendKey) {
            this.deptExtendKey = deptExtendKey;
            return this;
        }
        public String getDeptExtendKey() {
            return this.deptExtendKey;
        }

        public QueryDepartmentExtendInfoResponseBodyContent setDeptExtendValue(String deptExtendValue) {
            this.deptExtendValue = deptExtendValue;
            return this;
        }
        public String getDeptExtendValue() {
            return this.deptExtendValue;
        }

        public QueryDepartmentExtendInfoResponseBodyContent setGmtCreateStr(String gmtCreateStr) {
            this.gmtCreateStr = gmtCreateStr;
            return this;
        }
        public String getGmtCreateStr() {
            return this.gmtCreateStr;
        }

        public QueryDepartmentExtendInfoResponseBodyContent setGmtModifiedStr(String gmtModifiedStr) {
            this.gmtModifiedStr = gmtModifiedStr;
            return this;
        }
        public String getGmtModifiedStr() {
            return this.gmtModifiedStr;
        }

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

        public QueryDepartmentExtendInfoResponseBodyContent setStatus(Integer status) {
            this.status = status;
            return this;
        }
        public Integer getStatus() {
            return this.status;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy