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