|
@@ -12,14 +12,20 @@ import com.ym.mec.common.page.QueryInfo;
|
|
public class StudentAttendanceQueryInfo extends QueryInfo {
|
|
public class StudentAttendanceQueryInfo extends QueryInfo {
|
|
|
|
|
|
@ApiModelProperty(value = "学生ID",required = false)
|
|
@ApiModelProperty(value = "学生ID",required = false)
|
|
- private Long studentID;
|
|
|
|
|
|
+ private Integer studentID;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "老师编号",required = false)
|
|
|
|
+ private Integer teacherId;
|
|
|
|
|
|
@ApiModelProperty(value = "乐团ID")
|
|
@ApiModelProperty(value = "乐团ID")
|
|
private Long musicGroupId;
|
|
private Long musicGroupId;
|
|
|
|
|
|
@ApiModelProperty(value = "课程组类型")
|
|
@ApiModelProperty(value = "课程组类型")
|
|
private String groupType;
|
|
private String groupType;
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "课程类型")
|
|
|
|
+ private String courseScheduleType;
|
|
|
|
+
|
|
@ApiModelProperty(value = "班级ID")
|
|
@ApiModelProperty(value = "班级ID")
|
|
private Long classGroupId;
|
|
private Long classGroupId;
|
|
|
|
|
|
@@ -48,15 +54,31 @@ public class StudentAttendanceQueryInfo extends QueryInfo {
|
|
this.filterStatus = filterStatus;
|
|
this.filterStatus = filterStatus;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getStudentID() {
|
|
|
|
- return studentID;
|
|
|
|
- }
|
|
|
|
|
|
+ public Integer getStudentID() {
|
|
|
|
+ return studentID;
|
|
|
|
+ }
|
|
|
|
|
|
- public void setStudentID(Long studentID) {
|
|
|
|
- this.studentID = studentID;
|
|
|
|
- }
|
|
|
|
|
|
+ public void setStudentID(Integer studentID) {
|
|
|
|
+ this.studentID = studentID;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getTeacherId() {
|
|
|
|
+ return teacherId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTeacherId(Integer teacherId) {
|
|
|
|
+ this.teacherId = teacherId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCourseScheduleType() {
|
|
|
|
+ return courseScheduleType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCourseScheduleType(String courseScheduleType) {
|
|
|
|
+ this.courseScheduleType = courseScheduleType;
|
|
|
|
+ }
|
|
|
|
|
|
- public Long getMusicGroupId() {
|
|
|
|
|
|
+ public Long getMusicGroupId() {
|
|
return musicGroupId;
|
|
return musicGroupId;
|
|
}
|
|
}
|
|
|
|
|