|
@@ -1,6 +1,7 @@
|
|
|
package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
import com.ym.mec.biz.dal.entity.CourseSchedule;
|
|
|
+import com.ym.mec.biz.dal.entity.School;
|
|
|
import com.ym.mec.biz.dal.enums.*;
|
|
|
|
|
|
import java.util.Date;
|
|
@@ -31,6 +32,8 @@ public class TeacherAttendanceDetailDto {
|
|
|
private Date signOutTime;
|
|
|
|
|
|
private Integer attendClassTime;
|
|
|
+
|
|
|
+ private School school;
|
|
|
|
|
|
public Integer getAttendClassTime() {
|
|
|
return attendClassTime;
|
|
@@ -135,4 +138,12 @@ public class TeacherAttendanceDetailDto {
|
|
|
public void setSignOutTime(Date signOutTime) {
|
|
|
this.signOutTime = signOutTime;
|
|
|
}
|
|
|
+
|
|
|
+ public School getSchool() {
|
|
|
+ return school;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSchool(School school) {
|
|
|
+ this.school = school;
|
|
|
+ }
|
|
|
}
|