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

com.aliyun.dingtalkindustry_1_0.models.CollegeAddCollegeDeptRequest 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 CollegeAddCollegeDeptRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

三年二班

*/ @NameInMap("deptName") public String deptName; /** *

This parameter is required.

* * example: *

class

*/ @NameInMap("deptType") public String deptType; /** *

This parameter is required.

* * example: *

10

*/ @NameInMap("sortFactor") public Long sortFactor; /** *

This parameter is required.

* * example: *

22222

*/ @NameInMap("superId") public Long superId; public static CollegeAddCollegeDeptRequest build(java.util.Map map) throws Exception { CollegeAddCollegeDeptRequest self = new CollegeAddCollegeDeptRequest(); return TeaModel.build(map, self); } public CollegeAddCollegeDeptRequest setDeptName(String deptName) { this.deptName = deptName; return this; } public String getDeptName() { return this.deptName; } public CollegeAddCollegeDeptRequest setDeptType(String deptType) { this.deptType = deptType; return this; } public String getDeptType() { return this.deptType; } public CollegeAddCollegeDeptRequest setSortFactor(Long sortFactor) { this.sortFactor = sortFactor; return this; } public Long getSortFactor() { return this.sortFactor; } public CollegeAddCollegeDeptRequest setSuperId(Long superId) { this.superId = superId; return this; } public Long getSuperId() { return this.superId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy