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

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

There is a newer version: 2.1.67
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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy