FsUserCourseVideoMapper.xml 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.fs.course.mapper.FsUserCourseVideoMapper">
  6. <resultMap type="FsUserCourseVideo" id="FsUserCourseVideoResult">
  7. <result property="videoId" column="video_id" />
  8. <result property="fileId" column="file_id" />
  9. <result property="title" column="title" />
  10. <result property="description" column="description" />
  11. <result property="videoUrl" column="video_url" />
  12. <result property="thumbnail" column="thumbnail" />
  13. <result property="duration" column="duration" />
  14. <result property="updateTime" column="update_time" />
  15. <result property="createTime" column="create_time" />
  16. <result property="talentId" column="talent_id" />
  17. <result property="courseId" column="course_id" />
  18. <result property="status" column="status" />
  19. <result property="courseSort" column="course_sort" />
  20. <result property="fileName" column="file_name" />
  21. <result property="isDel" column="is_del" />
  22. <result property="questionBankId" column="question_bank_id" />
  23. <result property="lineOne" column="line_one" />
  24. <result property="lineTwo" column="line_two" />
  25. <result property="lineThree" column="line_three" />
  26. <result property="uploadType" column="upload_type" />
  27. <result property="redPacketMoney" column="red_packet_money" />
  28. <result property="fileSize" column="file_size" />
  29. <result property="fileKey" column="file_key" />
  30. <result property="round" column="round" />
  31. <result property="packageJson" column="package_json" />
  32. <result property="isTranscode" column="is_transcode" />
  33. <result property="transcodeFileKey" column="transcode_file_key" />
  34. <result property="viewStartTime" column="view_start_time" />
  35. <result property="viewEndTime" column="view_end_time" />
  36. <result property="lastJoinTime" column="last_join_time" />
  37. <result property="projectId" column="project_id" />
  38. </resultMap>
  39. <sql id="selectFsUserCourseVideoVo">
  40. select * from fs_user_course_video
  41. </sql>
  42. <select id="selectFsUserCourseVideoList" parameterType="FsUserCourseVideo" resultMap="FsUserCourseVideoResult">
  43. <include refid="selectFsUserCourseVideoVo"/>
  44. <where>
  45. <if test="fileId != null and fileId != ''"> and file_id = #{fileId}</if>
  46. <if test="title != null and title != ''"> and title = #{title}</if>
  47. <if test="description != null and description != ''"> and description = #{description}</if>
  48. <if test="videoUrl != null and videoUrl != ''"> and video_url = #{videoUrl}</if>
  49. <if test="thumbnail != null and thumbnail != ''"> and thumbnail = #{thumbnail}</if>
  50. <if test="duration != null "> and duration = #{duration}</if>
  51. <if test="talentId != null "> and talent_id = #{talentId}</if>
  52. <if test="courseId != null "> and course_id = #{courseId}</if>
  53. <if test="status != null "> and status = #{status}</if>
  54. <if test="courseSort != null "> and course_sort = #{courseSort}</if>
  55. <if test="questionBankId != null "> and question_bank_id = #{questionBankId}</if>
  56. <if test="userId != null "> and user_id = #{userId}</if>
  57. <if test="projectId != null "> and project_id = #{projectId}</if>
  58. </where>
  59. </select>
  60. <select id="selectFsUserCourseVideoByVideoId" parameterType="Long" resultMap="FsUserCourseVideoResult">
  61. <include refid="selectFsUserCourseVideoVo"/>
  62. where video_id = #{videoId}
  63. </select>
  64. <insert id="insertFsUserCourseVideo" parameterType="FsUserCourseVideo" useGeneratedKeys="true" keyProperty="videoId">
  65. insert into fs_user_course_video
  66. <trim prefix="(" suffix=")" suffixOverrides=",">
  67. <if test="fileId != null">file_id,</if>
  68. <if test="title != null">title,</if>
  69. <if test="description != null">description,</if>
  70. <if test="videoUrl != null">video_url,</if>
  71. <if test="thumbnail != null">thumbnail,</if>
  72. <if test="duration != null">duration,</if>
  73. <if test="updateTime != null">update_time,</if>
  74. <if test="createTime != null">create_time,</if>
  75. <if test="talentId != null">talent_id,</if>
  76. <if test="courseId != null">course_id,</if>
  77. <if test="status != null">status,</if>
  78. <if test="courseSort != null">course_sort,</if>
  79. <if test="fileName != null">file_name,</if>
  80. <if test="isDel != null">is_del,</if>
  81. <if test="questionBankId != null">question_bank_id,</if>
  82. <if test="lineOne != null">line_one,</if>
  83. <if test="lineTwo != null">line_two,</if>
  84. <if test="lineThree != null">line_three,</if>
  85. <if test="uploadType != null">upload_type,</if>
  86. <if test="redPacketMoney != null">red_packet_money,</if>
  87. <if test="fileSize != null">file_size,</if>
  88. <if test="fileKey != null">file_key,</if>
  89. <if test="round != null">round,</if>
  90. <if test="packageJson != null">package_json,</if>
  91. <if test="isTranscode != null">is_transcode,</if>
  92. <if test="transcodeFileKey != null">transcode_file_key,</if>
  93. <if test="viewStartTime != null">view_start_time,</if>
  94. <if test="viewEndTime != null">view_end_time,</if>
  95. <if test="lastJoinTime != null">last_join_time,</if>
  96. <if test="userId != null">user_id,</if>
  97. <if test="projectId != null">project_id,</if>
  98. </trim>
  99. <trim prefix="values (" suffix=")" suffixOverrides=",">
  100. <if test="fileId != null">#{fileId},</if>
  101. <if test="title != null">#{title},</if>
  102. <if test="description != null">#{description},</if>
  103. <if test="videoUrl != null">#{videoUrl},</if>
  104. <if test="thumbnail != null">#{thumbnail},</if>
  105. <if test="duration != null">#{duration},</if>
  106. <if test="updateTime != null">#{updateTime},</if>
  107. <if test="createTime != null">#{createTime},</if>
  108. <if test="talentId != null">#{talentId},</if>
  109. <if test="courseId != null">#{courseId},</if>
  110. <if test="status != null">#{status},</if>
  111. <if test="courseSort != null">#{courseSort},</if>
  112. <if test="fileName != null">#{fileName},</if>
  113. <if test="isDel != null">#{isDel},</if>
  114. <if test="questionBankId != null">#{questionBankId},</if>
  115. <if test="lineOne != null">#{lineOne},</if>
  116. <if test="lineTwo != null">#{lineTwo},</if>
  117. <if test="lineThree != null">#{lineThree},</if>
  118. <if test="uploadType != null">#{uploadType},</if>
  119. <if test="redPacketMoney != null">#{redPacketMoney},</if>
  120. <if test="fileSize != null">#{fileSize},</if>
  121. <if test="fileKey != null">#{fileKey},</if>
  122. <if test="round != null">#{round},</if>
  123. <if test="packageJson != null">#{packageJson},</if>
  124. <if test="isTranscode != null">#{isTranscode},</if>
  125. <if test="transcodeFileKey != null">#{transcodeFileKey},</if>
  126. <if test="viewStartTime != null">#{viewStartTime},</if>
  127. <if test="viewEndTime != null">#{viewEndTime},</if>
  128. <if test="lastJoinTime != null">#{lastJoinTime},</if>
  129. <if test="userId != null">#{userId},</if>
  130. <if test="projectId != null">#{projectId},</if>
  131. </trim>
  132. </insert>
  133. <insert id="insertBatchFsUserCourseVideo" parameterType="FsUserCourseVideo" useGeneratedKeys="true" keyProperty="videoId">
  134. insert into fs_user_course_video
  135. (
  136. title,
  137. video_url,
  138. thumbnail,
  139. duration,
  140. course_id,
  141. status,
  142. course_sort,
  143. file_name,
  144. question_bank_id,
  145. line_one,
  146. line_two,
  147. line_three,
  148. red_packet_money,
  149. file_size,
  150. file_key,
  151. is_transcode,
  152. user_id,
  153. project_id
  154. )
  155. values
  156. <foreach collection="collect" item="item" separator=",">
  157. (
  158. #{item.title},
  159. #{item.videoUrl},
  160. #{item.thumbnail},
  161. #{item.duration},
  162. #{item.courseId},
  163. #{item.status},
  164. #{item.courseSort},
  165. #{item.fileName},
  166. #{item.questionBankId},
  167. #{item.lineOne},
  168. #{item.lineTwo},
  169. #{item.lineThree},
  170. #{item.redPacketMoney},
  171. #{item.fileSize},
  172. #{item.fileKey},
  173. #{item.isTranscode},
  174. #{item.userId},
  175. #{item.projectId}
  176. )
  177. </foreach>
  178. </insert>
  179. <update id="updateFsUserCourseVideo" parameterType="FsUserCourseVideo">
  180. update fs_user_course_video
  181. <trim prefix="SET" suffixOverrides=",">
  182. <if test="fileId != null">file_id = #{fileId},</if>
  183. <if test="title != null">title = #{title},</if>
  184. <if test="description != null">description = #{description},</if>
  185. <if test="videoUrl != null">video_url = #{videoUrl},</if>
  186. <if test="thumbnail != null">thumbnail = #{thumbnail},</if>
  187. <if test="duration != null">duration = #{duration},</if>
  188. <if test="updateTime != null">update_time = #{updateTime},</if>
  189. <if test="createTime != null">create_time = #{createTime},</if>
  190. <if test="talentId != null">talent_id = #{talentId},</if>
  191. <if test="courseId != null">course_id = #{courseId},</if>
  192. <if test="status != null">status = #{status},</if>
  193. <if test="courseSort != null">course_sort = #{courseSort},</if>
  194. <if test="fileName != null">file_name = #{fileName},</if>
  195. <if test="isDel != null">is_del = #{isDel},</if>
  196. <if test="questionBankId != null">question_bank_id = #{questionBankId},</if>
  197. <if test="lineOne != null">line_one = #{lineOne},</if>
  198. <if test="lineTwo != null">line_two = #{lineTwo},</if>
  199. <if test="lineThree != null">line_three = #{lineThree},</if>
  200. <if test="uploadType != null">upload_type = #{uploadType},</if>
  201. <if test="redPacketMoney != null">red_packet_money = #{redPacketMoney},</if>
  202. <if test="fileSize != null">file_size = #{fileSize},</if>
  203. <if test="fileKey != null">file_key = #{fileKey},</if>
  204. <if test="round != null">round = #{round},</if>
  205. <if test="packageJson != null">package_json = #{packageJson},</if>
  206. <if test="isTranscode != null">is_transcode = #{isTranscode},</if>
  207. <if test="transcodeFileKey != null">transcode_file_key = #{transcodeFileKey},</if>
  208. <if test="viewStartTime != null">view_start_time = #{viewStartTime},</if>
  209. <if test="viewEndTime != null">view_end_time = #{viewEndTime},</if>
  210. <if test="lastJoinTime != null">last_join_time = #{lastJoinTime},</if>
  211. <if test="projectId != null">project_id = #{projectId},</if>
  212. </trim>
  213. where video_id = #{videoId}
  214. </update>
  215. <update id="deleteFsUserCourseVideoByVideoId" parameterType="String">
  216. update fs_user_course_video set is_del = 1 where video_id = #{videoId}
  217. </update>
  218. <update id="deleteFsUserCourseVideoByVideoIds" parameterType="String">
  219. update fs_user_course_video set is_del = 1 where video_id in
  220. <foreach item="videoId" collection="array" open="(" separator="," close=")">
  221. #{videoId}
  222. </foreach>
  223. </update>
  224. <update id="updates">
  225. update fs_user_course_video set view_start_time = #{viewStartTime},view_end_time = #{viewEndTime},last_join_time = #{lastJoinTime} where video_id in
  226. <foreach item="videoId" collection="ids" open="(" separator="," close=")">
  227. #{videoId}
  228. </foreach>
  229. </update>
  230. <select id="selectFsUserCourseVideoPageList" resultType="FsUserCourseVideoPageListVO">
  231. SELECT
  232. DISTINCT video.video_id,
  233. video.title,
  234. video.description,
  235. video.video_url,
  236. video.thumbnail,
  237. video.duration,
  238. video.course_id,
  239. video.STATUS,
  240. video.course_sort,
  241. course.course_name,
  242. fcpd.period_id,
  243. fcpd.id,
  244. if(ccut.start_date_time is null, fcpd.start_date_time, ccut.start_date_time) as startDateTime,
  245. if(ccut.end_date_time is null, fcpd.end_date_time, ccut.end_date_time) as endDateTime,
  246. course.project as projectId
  247. FROM `fs_user_course_video` video
  248. left join fs_user_course_period_days fcpd on fcpd.video_id = video.video_id
  249. left join fs_user_course_period fcp on fcp.period_id = fcpd.period_id
  250. LEFT JOIN fs_user_course course ON video.course_id = course.course_id
  251. LEFT JOIN fs_user_course_company_user_time ccut ON ccut.period_id = fcpd.period_id
  252. AND ccut.course_id = fcpd.course_id
  253. AND ccut.video_id = fcpd.video_id
  254. AND ccut.company_user_id = #{companyUserId}
  255. where course.is_del = 0 and fcp.del_flag = 0 and fcpd.del_flag = 0
  256. AND FIND_IN_SET(#{companyId}, fcp.company_id)
  257. <if test="periodId != null and periodId !='' ">
  258. AND fcpd.period_id = #{periodId}
  259. </if>
  260. <if test="keyword != null and keyword !='' ">
  261. AND video.title LIKE concat('%',#{keyword},'%')
  262. </if>
  263. order by video.course_sort
  264. </select>
  265. <select id="selectVideoListByMap" resultType="com.fs.his.vo.OptionsVO">
  266. select distinct
  267. ucv.video_id dictValue,
  268. ucv.title dictLabel
  269. from fs_user_course_video ucv
  270. left join fs_user_course_period_days ucpd on ucpd.video_id = ucv.video_id
  271. <where>
  272. <if test="params.name != null and params.name != ''">
  273. ucv.title like concat('%', #{params.name}, '%')
  274. </if>
  275. <if test="params.periodId != null">
  276. and ucpd.period_id = #{params.periodId}
  277. </if>
  278. </where>
  279. </select>
  280. <select id="selectFsUserCourseVideoListByMap" resultType="com.fs.course.vo.newfs.FsUserCourseVideoPageListVO">
  281. select
  282. video.video_id,
  283. video.title,
  284. video.description,
  285. video.video_url,
  286. video.thumbnail,
  287. video.duration,
  288. video.course_id,
  289. video.STATUS,
  290. video.course_sort,
  291. course.course_name,
  292. fcpd.period_id,
  293. fcpd.id,
  294. if(ccut.start_date_time is null, fcpd.start_date_time, ccut.start_date_time) as startDateTime,
  295. if(ccut.end_date_time is null, fcpd.end_date_time, ccut.end_date_time) as endDateTime,
  296. course.project as projectId
  297. from `fs_user_course_video` video
  298. left join fs_user_course_period_days fcpd on fcpd.video_id = video.video_id
  299. left join fs_user_course_period fcp on fcp.period_id = fcpd.period_id
  300. left join fs_user_course course ON video.course_id = course.course_id
  301. LEFT JOIN fs_user_course_company_user_time ccut ON ccut.period_id = fcpd.period_id
  302. AND ccut.course_id = fcpd.course_id
  303. AND ccut.video_id = fcpd.video_id
  304. AND ccut.company_user_id = #{params.companyUserId}
  305. where course.is_del = 0
  306. <if test="params.companyId != null">
  307. and FIND_IN_SET(#{params.companyId}, fcp.company_id)
  308. </if>
  309. and (
  310. (fcpd.start_date_time &lt;= CONCAT( CURDATE(), ' 23:59:59' ) and fcpd.end_date_time >= CONCAT( CURDATE(), ' 00:00:00' ))
  311. or (ccut.start_date_time &lt;= CONCAT( CURDATE(), ' 23:59:59' ) and ccut.end_date_time >= CONCAT( CURDATE(), ' 00:00:00' ))
  312. )
  313. order by video.course_sort
  314. </select>
  315. <select id="selectFsUserCourseVideoByVideoIdAndUserId" resultType="com.fs.course.domain.FsUserCourseVideo">
  316. select * from fs_user_course_video
  317. where video_id=#{videoId} and is_del = 0
  318. <if test="userId != null">
  319. user_id = #{userId}
  320. </if>
  321. </select>
  322. <select id="selectFsUserCourseVodeAllList" resultType="com.fs.his.vo.OptionsVO">
  323. select video_id dict_value, title dict_label from fs_user_course_video where course_id=#{id} and is_del = 0
  324. <if test="userId != null">
  325. and user_id = #{userId}
  326. </if>
  327. </select>
  328. <update id="updateRedPacketMoney">
  329. update fs_user_course_video set red_packet_money = #{redPacketMoney} where video_id = #{videoId}
  330. </update>
  331. </mapper>