com.aliyun.dingtalkindustry_1_0.models.CollegeUpdateCollegeDeptRequest 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 CollegeUpdateCollegeDeptRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1111
*/
@NameInMap("deptId")
public Long deptId;
@NameInMap("deptName")
public String deptName;
/**
* example:
* 10
*/
@NameInMap("sortFactor")
public Long sortFactor;
/**
* example:
* 22222
*/
@NameInMap("superId")
public Long superId;
public static CollegeUpdateCollegeDeptRequest build(java.util.Map map) throws Exception {
CollegeUpdateCollegeDeptRequest self = new CollegeUpdateCollegeDeptRequest();
return TeaModel.build(map, self);
}
public CollegeUpdateCollegeDeptRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public CollegeUpdateCollegeDeptRequest setDeptName(String deptName) {
this.deptName = deptName;
return this;
}
public String getDeptName() {
return this.deptName;
}
public CollegeUpdateCollegeDeptRequest setSortFactor(Long sortFactor) {
this.sortFactor = sortFactor;
return this;
}
public Long getSortFactor() {
return this.sortFactor;
}
public CollegeUpdateCollegeDeptRequest setSuperId(Long superId) {
this.superId = superId;
return this;
}
public Long getSuperId() {
return this.superId;
}
}