
com.aliyun.dingtalkindustry_1_0.models.CollegeQueryStudentInfoByDeptRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class CollegeQueryStudentInfoByDeptRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 11111
*/
@NameInMap("deptId")
public Long deptId;
/**
* This parameter is required.
*
* example:
* 22222
*/
@NameInMap("studentId")
public Long studentId;
public static CollegeQueryStudentInfoByDeptRequest build(java.util.Map map) throws Exception {
CollegeQueryStudentInfoByDeptRequest self = new CollegeQueryStudentInfoByDeptRequest();
return TeaModel.build(map, self);
}
public CollegeQueryStudentInfoByDeptRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public CollegeQueryStudentInfoByDeptRequest setStudentId(Long studentId) {
this.studentId = studentId;
return this;
}
public Long getStudentId() {
return this.studentId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy