com.aliyun.dingtalkedu_1_0.models.QueryTeachSubjectsResponseBody 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class QueryTeachSubjectsResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static QueryTeachSubjectsResponseBody build(java.util.Map map) throws Exception {
QueryTeachSubjectsResponseBody self = new QueryTeachSubjectsResponseBody();
return TeaModel.build(map, self);
}
public QueryTeachSubjectsResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class QueryTeachSubjectsResponseBodyResult extends TeaModel {
/**
* example:
* 333333
*/
@NameInMap("classId")
public Long classId;
/**
* example:
* dingding142523424
*/
@NameInMap("corpId")
public String corpId;
/**
* example:
* kindergarten
*/
@NameInMap("periodCode")
public String periodCode;
/**
* example:
* cn_yuwen
*/
@NameInMap("subjectCode")
public String subjectCode;
/**
* example:
* 语文
*/
@NameInMap("subjectName")
public String subjectName;
/**
* example:
* 李老师
*/
@NameInMap("teacherName")
public String teacherName;
/**
* example:
* 50142345134
*/
@NameInMap("teacherUserId")
public String teacherUserId;
public static QueryTeachSubjectsResponseBodyResult build(java.util.Map map) throws Exception {
QueryTeachSubjectsResponseBodyResult self = new QueryTeachSubjectsResponseBodyResult();
return TeaModel.build(map, self);
}
public QueryTeachSubjectsResponseBodyResult setClassId(Long classId) {
this.classId = classId;
return this;
}
public Long getClassId() {
return this.classId;
}
public QueryTeachSubjectsResponseBodyResult setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public QueryTeachSubjectsResponseBodyResult setPeriodCode(String periodCode) {
this.periodCode = periodCode;
return this;
}
public String getPeriodCode() {
return this.periodCode;
}
public QueryTeachSubjectsResponseBodyResult setSubjectCode(String subjectCode) {
this.subjectCode = subjectCode;
return this;
}
public String getSubjectCode() {
return this.subjectCode;
}
public QueryTeachSubjectsResponseBodyResult setSubjectName(String subjectName) {
this.subjectName = subjectName;
return this;
}
public String getSubjectName() {
return this.subjectName;
}
public QueryTeachSubjectsResponseBodyResult setTeacherName(String teacherName) {
this.teacherName = teacherName;
return this;
}
public String getTeacherName() {
return this.teacherName;
}
public QueryTeachSubjectsResponseBodyResult setTeacherUserId(String teacherUserId) {
this.teacherUserId = teacherUserId;
return this;
}
public String getTeacherUserId() {
return this.teacherUserId;
}
}
}