|
|
@@ -246,6 +246,12 @@ public interface FsUserCourseVideoMapper extends BaseMapper<FsUserCourseVideo> {
|
|
|
"WHERE file_key = #{fileKey}")
|
|
|
void updateFsUserCourseVideoByFileKey(FsUserCourseVideo courseVideo);
|
|
|
|
|
|
+ @Update("UPDATE fs_user_course_video " +
|
|
|
+ "SET line_two = #{lineTwo}, " +
|
|
|
+ " update_time = NOW() " + // 添加更新时间
|
|
|
+ "WHERE file_key = #{fileKey}")
|
|
|
+ void updateFsUserCourseVideoByFileKeyForHsy(FsUserCourseVideo courseVideo);
|
|
|
+
|
|
|
@Select("select title from fs_user_course_video WHERE video_id=#{videoId}")
|
|
|
String selectFsUserCourseVideoByVideoForTitle(@Param("videoId") Long videoId);
|
|
|
|