com.aliyun.dingtalkindustry_1_0.models.QueryDepartmentExtendInfoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}