All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkindustry_1_0.models.CollegeChangeStudentDeptRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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