
com.aliyun.dingtalkhrbrain_1_0.models.HrbrainImportDeptInfoRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkhrbrain_1_0.models;
import com.aliyun.tea.*;
public class HrbrainImportDeptInfoRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("body")
public java.util.List body;
/**
* This parameter is required.
*/
@NameInMap("corpId")
public String corpId;
public static HrbrainImportDeptInfoRequest build(java.util.Map map) throws Exception {
HrbrainImportDeptInfoRequest self = new HrbrainImportDeptInfoRequest();
return TeaModel.build(map, self);
}
public HrbrainImportDeptInfoRequest setBody(java.util.List body) {
this.body = body;
return this;
}
public java.util.List getBody() {
return this.body;
}
public HrbrainImportDeptInfoRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public static class HrbrainImportDeptInfoRequestBody extends TeaModel {
@NameInMap("createDate")
public String createDate;
/**
* This parameter is required.
*/
@NameInMap("deptName")
public String deptName;
/**
* This parameter is required.
*/
@NameInMap("deptNo")
public String deptNo;
@NameInMap("effectiveDate")
public String effectiveDate;
@NameInMap("extendInfo")
public java.util.Map extendInfo;
@NameInMap("isEffective")
public String isEffective;
@NameInMap("superDeptName")
public String superDeptName;
/**
* This parameter is required.
*/
@NameInMap("superDeptNo")
public String superDeptNo;
@NameInMap("superEmpId")
public String superEmpId;
@NameInMap("superName")
public String superName;
public static HrbrainImportDeptInfoRequestBody build(java.util.Map map) throws Exception {
HrbrainImportDeptInfoRequestBody self = new HrbrainImportDeptInfoRequestBody();
return TeaModel.build(map, self);
}
public HrbrainImportDeptInfoRequestBody setCreateDate(String createDate) {
this.createDate = createDate;
return this;
}
public String getCreateDate() {
return this.createDate;
}
public HrbrainImportDeptInfoRequestBody setDeptName(String deptName) {
this.deptName = deptName;
return this;
}
public String getDeptName() {
return this.deptName;
}
public HrbrainImportDeptInfoRequestBody setDeptNo(String deptNo) {
this.deptNo = deptNo;
return this;
}
public String getDeptNo() {
return this.deptNo;
}
public HrbrainImportDeptInfoRequestBody setEffectiveDate(String effectiveDate) {
this.effectiveDate = effectiveDate;
return this;
}
public String getEffectiveDate() {
return this.effectiveDate;
}
public HrbrainImportDeptInfoRequestBody setExtendInfo(java.util.Map extendInfo) {
this.extendInfo = extendInfo;
return this;
}
public java.util.Map getExtendInfo() {
return this.extendInfo;
}
public HrbrainImportDeptInfoRequestBody setIsEffective(String isEffective) {
this.isEffective = isEffective;
return this;
}
public String getIsEffective() {
return this.isEffective;
}
public HrbrainImportDeptInfoRequestBody setSuperDeptName(String superDeptName) {
this.superDeptName = superDeptName;
return this;
}
public String getSuperDeptName() {
return this.superDeptName;
}
public HrbrainImportDeptInfoRequestBody setSuperDeptNo(String superDeptNo) {
this.superDeptNo = superDeptNo;
return this;
}
public String getSuperDeptNo() {
return this.superDeptNo;
}
public HrbrainImportDeptInfoRequestBody setSuperEmpId(String superEmpId) {
this.superEmpId = superEmpId;
return this;
}
public String getSuperEmpId() {
return this.superEmpId;
}
public HrbrainImportDeptInfoRequestBody setSuperName(String superName) {
this.superName = superName;
return this;
}
public String getSuperName() {
return this.superName;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy