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