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

com.aliyun.dingtalkedu_1_0.models.QueryAllSubjectsFromClassScheduleRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;

import com.aliyun.tea.*;

public class QueryAllSubjectsFromClassScheduleRequest extends TeaModel {
    // 班级ID。
    @NameInMap("classIds")
    public java.util.List classIds;

    // 操作者的userid。
    @NameInMap("opUserId")
    public String opUserId;

    // 学段编码:KINDERGARTEN:小学 PRIMARY_SCHOOL:小学 MODDLE_SCHOOL: 初中 HIGH_SCHOOL: 高中 UNIVERSITY:大学 NOT_SCHOOL:无学段
    @NameInMap("periodCode")
    public String periodCode;

    public static QueryAllSubjectsFromClassScheduleRequest build(java.util.Map map) throws Exception {
        QueryAllSubjectsFromClassScheduleRequest self = new QueryAllSubjectsFromClassScheduleRequest();
        return TeaModel.build(map, self);
    }

    public QueryAllSubjectsFromClassScheduleRequest setClassIds(java.util.List classIds) {
        this.classIds = classIds;
        return this;
    }
    public java.util.List getClassIds() {
        return this.classIds;
    }

    public QueryAllSubjectsFromClassScheduleRequest setOpUserId(String opUserId) {
        this.opUserId = opUserId;
        return this;
    }
    public String getOpUserId() {
        return this.opUserId;
    }

    public QueryAllSubjectsFromClassScheduleRequest setPeriodCode(String periodCode) {
        this.periodCode = periodCode;
        return this;
    }
    public String getPeriodCode() {
        return this.periodCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy