|
@@ -1,5 +1,6 @@
|
|
|
package com.ym.mec.biz.dal.page;
|
|
|
|
|
|
+import com.ym.mec.biz.dal.entity.CourseSchedule;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import com.ym.mec.biz.dal.enums.ClassGroupTypeEnum;
|
|
@@ -18,6 +19,8 @@ public class StudentManageAttendanceQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "班级类型(普通班级、合奏班级、提高课班级、VIP班级)",required = true)
|
|
|
private ClassGroupTypeEnum classGroupType;
|
|
|
|
|
|
+ private CourseSchedule.CourseScheduleType courseScheduleType;
|
|
|
+
|
|
|
@ApiModelProperty(value = "班级名称",required = false)
|
|
|
private String classGroupName;
|
|
|
|
|
@@ -38,6 +41,14 @@ public class StudentManageAttendanceQueryInfo extends QueryInfo {
|
|
|
this.courseStatus = courseStatus;
|
|
|
}
|
|
|
|
|
|
+ public CourseSchedule.CourseScheduleType getCourseScheduleType() {
|
|
|
+ return courseScheduleType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseScheduleType(CourseSchedule.CourseScheduleType courseScheduleType) {
|
|
|
+ this.courseScheduleType = courseScheduleType;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getStudentId() {
|
|
|
return studentId;
|
|
|
}
|