@@ -237,6 +237,7 @@ public class UserStudyRecordServiceImpl extends ServiceImpl<UserStudyRecordMappe
vo.setSectionType(sectionVo.getSectionType());
vo.setLiveUrl(sectionVo.getLiveUrl());
vo.setRecordingUrl(sectionVo.getRecordingUrl());
+ vo.setSectionName(sectionVo.getName());
Integer learning = courseChapterSectionMapper.learningCheck(vo.getSectionId(), vo.getGradeId(), bo.getUserId(), vo.getModuleId(), vo.getChapterId(), 0L,vo.getCourseId(),vo.getOrderGoodsId());
if (learning > 0) {
vo.setLearning(1L);
@@ -124,4 +124,9 @@ public class UserStudyRecordVo {
private String ip;
@ApiModelProperty("1已学习")
private Long learning;
+
+ /** 名称 */
+ @Excel(name = "节名称")
+ @ApiModelProperty("节名称")
+ private String sectionName;
}