|
@@ -3426,6 +3426,7 @@ public class ClassGradeUserServiceImpl extends ServiceImpl<ClassGradeUserMapper,
|
|
|
.eq(UserStudyVideo::getStatus,1));
|
|
|
if (ObjectUtils.isNotNull(studyVideo)){
|
|
|
classPeriodSectionVo.setVideoUrl(studyVideo.getVideoUrl());
|
|
|
+ classPeriodSectionVo.setVideoTime(DateUtils.timestampToDateFormat(studyVideo.getCreateTime(),"yyyy-MM-dd HH:mm:ss"));
|
|
|
classPeriodSectionVo.setVideoCurrentTime(studyVideo.getVideoCurrentTime());
|
|
|
}
|
|
|
sectionTotal++;
|
|
@@ -3605,6 +3606,7 @@ public class ClassGradeUserServiceImpl extends ServiceImpl<ClassGradeUserMapper,
|
|
|
.eq(UserStudyVideo::getStatus,1));
|
|
|
if (ObjectUtils.isNotNull(studyVideo)){
|
|
|
classPeriodSectionVo.setVideoUrl(studyVideo.getVideoUrl());
|
|
|
+ classPeriodSectionVo.setVideoTime(DateUtils.timestampToDateFormat(studyVideo.getCreateTime(),"yyyy-MM-dd HH:mm:ss"));
|
|
|
classPeriodSectionVo.setVideoCurrentTime(studyVideo.getVideoCurrentTime());
|
|
|
}
|
|
|
sectionTotal++;
|
|
@@ -3741,6 +3743,7 @@ public class ClassGradeUserServiceImpl extends ServiceImpl<ClassGradeUserMapper,
|
|
|
.eq(UserStudyVideo::getStatus,1));
|
|
|
if (ObjectUtils.isNotNull(studyVideo)){
|
|
|
classPeriodVo.setVideoUrl(studyVideo.getVideoUrl());
|
|
|
+ classPeriodVo.setVideoTime(DateUtils.timestampToDateFormat(studyVideo.getCreateTime(),"yyyy-MM-dd HH:mm:ss"));
|
|
|
classPeriodVo.setVideoCurrentTime(studyVideo.getVideoCurrentTime());
|
|
|
}
|
|
|
sectionTotal++;
|