![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.CollegeAddCollegeDeptRequest 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 CollegeAddCollegeDeptRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 三年二班
*/
@NameInMap("deptName")
public String deptName;
/**
* This parameter is required.
*
* example:
* class
*/
@NameInMap("deptType")
public String deptType;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("sortFactor")
public Long sortFactor;
/**
* This parameter is required.
*
* example:
* 22222
*/
@NameInMap("superId")
public Long superId;
public static CollegeAddCollegeDeptRequest build(java.util.Map map) throws Exception {
CollegeAddCollegeDeptRequest self = new CollegeAddCollegeDeptRequest();
return TeaModel.build(map, self);
}
public CollegeAddCollegeDeptRequest setDeptName(String deptName) {
this.deptName = deptName;
return this;
}
public String getDeptName() {
return this.deptName;
}
public CollegeAddCollegeDeptRequest setDeptType(String deptType) {
this.deptType = deptType;
return this;
}
public String getDeptType() {
return this.deptType;
}
public CollegeAddCollegeDeptRequest setSortFactor(Long sortFactor) {
this.sortFactor = sortFactor;
return this;
}
public Long getSortFactor() {
return this.sortFactor;
}
public CollegeAddCollegeDeptRequest setSuperId(Long superId) {
this.superId = superId;
return this;
}
public Long getSuperId() {
return this.superId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy