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

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

There is a newer version: 2.1.50
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 QueryDepartmentExtendInfoRequest extends TeaModel {
    // 科室或医疗组code
    @NameInMap("deptCode")
    public Long deptCode;

    // 扩展属性code
    @NameInMap("propCode")
    public String propCode;

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

    public QueryDepartmentExtendInfoRequest setDeptCode(Long deptCode) {
        this.deptCode = deptCode;
        return this;
    }
    public Long getDeptCode() {
        return this.deptCode;
    }

    public QueryDepartmentExtendInfoRequest setPropCode(String propCode) {
        this.propCode = propCode;
        return this;
    }
    public String getPropCode() {
        return this.propCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy