|
|
@@ -158,6 +158,9 @@ public interface FsUserCourseVideoMapper extends BaseMapper<FsUserCourseVideo> {
|
|
|
@Select("select video_id dict_value, title dict_label from fs_user_course_video where course_id=#{id} and is_del = 0 order by course_sort")
|
|
|
List<OptionsVO> selectFsUserCourseVodeAllList(Long id);
|
|
|
|
|
|
+ @Select("select video_id dict_value, title dict_label,is_del from fs_user_course_video where course_id=#{id} order by course_sort")
|
|
|
+ List<OptionsVO> selectFsUserCourseVodeAllListByWatch(Long id);
|
|
|
+
|
|
|
@Select("select video_id dict_value, title dict_label from fs_user_course_video where course_id=#{id} and is_del = 0 and is_on_put = 0 order by course_sort, video_id")
|
|
|
List<OptionsVO> selectFsUserCourseVideoAllListV2(@Param("id") Long id);
|
|
|
|