com.aliyun.dingtalkindustry_1_0.models.CollegeAddStudentRequest 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 CollegeAddStudentRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 6235234
*/
@NameInMap("deptId")
public Long deptId;
/**
* example:
* ”city“:"Beijing"
*/
@NameInMap("empExtension")
public java.util.Map empExtension;
/**
* example:
* male
*/
@NameInMap("gender")
public String gender;
/**
* example:
* 11019xxxxxx0001
*/
@NameInMap("identifyId")
public String identifyId;
/**
* This parameter is required.
*
* example:
* 186xxxxxxxx
*/
@NameInMap("mobile")
public String mobile;
/**
* example:
* 2015
*/
@NameInMap("startYear")
public String startYear;
/**
* This parameter is required.
*
* example:
* 张三
*/
@NameInMap("studentName")
public String studentName;
/**
* This parameter is required.
*
* example:
* mf1922051
*/
@NameInMap("studentNumber")
public String studentNumber;
/**
* example:
* 0324124
*/
@NameInMap("userId")
public String userId;
public static CollegeAddStudentRequest build(java.util.Map map) throws Exception {
CollegeAddStudentRequest self = new CollegeAddStudentRequest();
return TeaModel.build(map, self);
}
public CollegeAddStudentRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public CollegeAddStudentRequest setEmpExtension(java.util.Map empExtension) {
this.empExtension = empExtension;
return this;
}
public java.util.Map getEmpExtension() {
return this.empExtension;
}
public CollegeAddStudentRequest setGender(String gender) {
this.gender = gender;
return this;
}
public String getGender() {
return this.gender;
}
public CollegeAddStudentRequest setIdentifyId(String identifyId) {
this.identifyId = identifyId;
return this;
}
public String getIdentifyId() {
return this.identifyId;
}
public CollegeAddStudentRequest setMobile(String mobile) {
this.mobile = mobile;
return this;
}
public String getMobile() {
return this.mobile;
}
public CollegeAddStudentRequest setStartYear(String startYear) {
this.startYear = startYear;
return this;
}
public String getStartYear() {
return this.startYear;
}
public CollegeAddStudentRequest setStudentName(String studentName) {
this.studentName = studentName;
return this;
}
public String getStudentName() {
return this.studentName;
}
public CollegeAddStudentRequest setStudentNumber(String studentNumber) {
this.studentNumber = studentNumber;
return this;
}
public String getStudentNumber() {
return this.studentNumber;
}
public CollegeAddStudentRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}