|
|
@@ -1,9 +1,11 @@
|
|
|
package com.zhongzheng.modules.course.mapper;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
+import com.zhongzheng.modules.course.bo.CourseMenuQueryBo;
|
|
|
import com.zhongzheng.modules.course.domain.CourseChapterBusiness;
|
|
|
import com.zhongzheng.modules.course.domain.CourseChapterSection;
|
|
|
import com.zhongzheng.modules.course.vo.CourseChapterSectionVo;
|
|
|
+import com.zhongzheng.modules.course.vo.CourseUserChapterSectionVo;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
@@ -15,5 +17,8 @@ import java.util.List;
|
|
|
*/
|
|
|
public interface CourseChapterSectionMapper extends BaseMapper<CourseChapterSection> {
|
|
|
List<CourseChapterSectionVo> getListById(Long id);
|
|
|
+ List<CourseChapterSectionVo> getInformById(Long id);
|
|
|
Long getListTotalTime(Long id);
|
|
|
+
|
|
|
+ List<CourseUserChapterSectionVo> sectionList(CourseMenuQueryBo bo);
|
|
|
}
|