![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.CollegeQueryStudentInfoByDeptResponseBody 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 CollegeQueryStudentInfoByDeptResponseBody extends TeaModel {
/**
* example:
* 01123
*/
@NameInMap("deptId")
public Long deptId;
/**
* example:
* NORMAL
*/
@NameInMap("dingMemberStatus")
public String dingMemberStatus;
/**
* example:
* ”city“:"Beijing"
*/
@NameInMap("empExtension")
public java.util.Map empExtension;
/**
* example:
* male
*/
@NameInMap("gender")
public String gender;
/**
* example:
* 11019xxxxxx0001
*/
@NameInMap("identifyId")
public String identifyId;
/**
* example:
* true
*/
@NameInMap("isActive")
public Boolean isActive;
/**
* example:
* 2015
*/
@NameInMap("startYear")
public String startYear;
/**
* example:
* 1111111
*/
@NameInMap("studentId")
public Long studentId;
/**
* example:
* 张三
*/
@NameInMap("studentName")
public String studentName;
/**
* example:
* mf1922051
*/
@NameInMap("studentNumber")
public String studentNumber;
/**
* example:
* 11111111
*/
@NameInMap("unionId")
public String unionId;
/**
* example:
* 0324124
*/
@NameInMap("userId")
public String userId;
public static CollegeQueryStudentInfoByDeptResponseBody build(java.util.Map map) throws Exception {
CollegeQueryStudentInfoByDeptResponseBody self = new CollegeQueryStudentInfoByDeptResponseBody();
return TeaModel.build(map, self);
}
public CollegeQueryStudentInfoByDeptResponseBody setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public CollegeQueryStudentInfoByDeptResponseBody setDingMemberStatus(String dingMemberStatus) {
this.dingMemberStatus = dingMemberStatus;
return this;
}
public String getDingMemberStatus() {
return this.dingMemberStatus;
}
public CollegeQueryStudentInfoByDeptResponseBody setEmpExtension(java.util.Map empExtension) {
this.empExtension = empExtension;
return this;
}
public java.util.Map getEmpExtension() {
return this.empExtension;
}
public CollegeQueryStudentInfoByDeptResponseBody setGender(String gender) {
this.gender = gender;
return this;
}
public String getGender() {
return this.gender;
}
public CollegeQueryStudentInfoByDeptResponseBody setIdentifyId(String identifyId) {
this.identifyId = identifyId;
return this;
}
public String getIdentifyId() {
return this.identifyId;
}
public CollegeQueryStudentInfoByDeptResponseBody setIsActive(Boolean isActive) {
this.isActive = isActive;
return this;
}
public Boolean getIsActive() {
return this.isActive;
}
public CollegeQueryStudentInfoByDeptResponseBody setStartYear(String startYear) {
this.startYear = startYear;
return this;
}
public String getStartYear() {
return this.startYear;
}
public CollegeQueryStudentInfoByDeptResponseBody setStudentId(Long studentId) {
this.studentId = studentId;
return this;
}
public Long getStudentId() {
return this.studentId;
}
public CollegeQueryStudentInfoByDeptResponseBody setStudentName(String studentName) {
this.studentName = studentName;
return this;
}
public String getStudentName() {
return this.studentName;
}
public CollegeQueryStudentInfoByDeptResponseBody setStudentNumber(String studentNumber) {
this.studentNumber = studentNumber;
return this;
}
public String getStudentNumber() {
return this.studentNumber;
}
public CollegeQueryStudentInfoByDeptResponseBody setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
public CollegeQueryStudentInfoByDeptResponseBody setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy