![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.CollegeChangeStudentDeptRequest 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 CollegeChangeStudentDeptRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 11111
*/
@NameInMap("deptId")
public Long deptId;
/**
* This parameter is required.
*
* example:
* 222222
*/
@NameInMap("newDeptId")
public Long newDeptId;
/**
* This parameter is required.
*
* example:
* 33333
*/
@NameInMap("studentId")
public Long studentId;
public static CollegeChangeStudentDeptRequest build(java.util.Map map) throws Exception {
CollegeChangeStudentDeptRequest self = new CollegeChangeStudentDeptRequest();
return TeaModel.build(map, self);
}
public CollegeChangeStudentDeptRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public CollegeChangeStudentDeptRequest setNewDeptId(Long newDeptId) {
this.newDeptId = newDeptId;
return this;
}
public Long getNewDeptId() {
return this.newDeptId;
}
public CollegeChangeStudentDeptRequest setStudentId(Long studentId) {
this.studentId = studentId;
return this;
}
public Long getStudentId() {
return this.studentId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy