|
@@ -76,6 +76,8 @@ public class TeacherAttendanceServiceImpl extends BaseServiceImpl<Long, TeacherA
|
|
|
private SysTenantConfigService sysTenantConfigService;
|
|
|
@Autowired
|
|
|
private StudentService studentService;
|
|
|
+ @Autowired
|
|
|
+ private LessonExaminationService lessonExaminationService;
|
|
|
|
|
|
@Autowired
|
|
|
private SysConfigService sysConfigService;
|
|
@@ -448,6 +450,12 @@ public class TeacherAttendanceServiceImpl extends BaseServiceImpl<Long, TeacherA
|
|
|
courseHomeworkService.update(courseHomework);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ //布置课后评测
|
|
|
+ LessonExaminationSaveDto examinationSaveDto = teacherSignOutDto.getLessonExaminationSaveDto();
|
|
|
+ if(Objects.nonNull(examinationSaveDto)){
|
|
|
+ lessonExaminationService.publish(examinationSaveDto);
|
|
|
+ }
|
|
|
return result;
|
|
|
}
|
|
|
|