|
@@ -28,10 +28,16 @@ public class EndCourseScheduleQueryInfo extends QueryInfo {
|
|
|
private Integer classGroupId;
|
|
|
|
|
|
@ApiModelProperty(value = "学生编号")
|
|
|
- private Integer studentId;
|
|
|
+ private String studentIdList;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学生名称")
|
|
|
+ private String studentName;
|
|
|
|
|
|
@ApiModelProperty(value = "教师编号")
|
|
|
- private Integer teacherId;
|
|
|
+ private String teacherIdList;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "教师名称")
|
|
|
+ private String teacherName;
|
|
|
|
|
|
@ApiModelProperty(value = "开始时间")
|
|
|
private Date startTime;
|
|
@@ -48,6 +54,22 @@ public class EndCourseScheduleQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "班级类型")
|
|
|
private ClassGroupTypeEnum classGroupType;
|
|
|
|
|
|
+ public String getStudentName() {
|
|
|
+ return studentName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentName(String studentName) {
|
|
|
+ this.studentName = studentName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTeacherName() {
|
|
|
+ return teacherName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTeacherName(String teacherName) {
|
|
|
+ this.teacherName = teacherName;
|
|
|
+ }
|
|
|
+
|
|
|
public ClassGroupTypeEnum getClassGroupType() {
|
|
|
return classGroupType;
|
|
|
}
|
|
@@ -96,20 +118,20 @@ public class EndCourseScheduleQueryInfo extends QueryInfo {
|
|
|
this.organIdList = organIdList;
|
|
|
}
|
|
|
|
|
|
- public Integer getStudentId() {
|
|
|
- return studentId;
|
|
|
+ public String getStudentIdList() {
|
|
|
+ return studentIdList;
|
|
|
}
|
|
|
|
|
|
- public void setStudentId(Integer studentId) {
|
|
|
- this.studentId = studentId;
|
|
|
+ public void setStudentIdList(String studentIdList) {
|
|
|
+ this.studentIdList = studentIdList;
|
|
|
}
|
|
|
|
|
|
- public Integer getTeacherId() {
|
|
|
- return teacherId;
|
|
|
+ public String getTeacherIdList() {
|
|
|
+ return teacherIdList;
|
|
|
}
|
|
|
|
|
|
- public void setTeacherId(Integer teacherId) {
|
|
|
- this.teacherId = teacherId;
|
|
|
+ public void setTeacherIdList(String teacherIdList) {
|
|
|
+ this.teacherIdList = teacherIdList;
|
|
|
}
|
|
|
|
|
|
public GroupType getGroupType() {
|