FsUserCourseVideoMapper.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  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. <result property="isFirst" column="is_first" />
  39. <result property="openClass" column="open_class" />
  40. </resultMap>
  41. <sql id="selectFsUserCourseVideoVo">
  42. select * from fs_user_course_video
  43. </sql>
  44. <select id="selectFsUserCourseVideoList" parameterType="FsUserCourseVideo" resultMap="FsUserCourseVideoResult">
  45. <include refid="selectFsUserCourseVideoVo"/>
  46. <where>
  47. <if test="fileId != null and fileId != ''"> and file_id = #{fileId}</if>
  48. <if test="title != null and title != ''"> and title = #{title}</if>
  49. <if test="description != null and description != ''"> and description = #{description}</if>
  50. <if test="videoUrl != null and videoUrl != ''"> and video_url = #{videoUrl}</if>
  51. <if test="thumbnail != null and thumbnail != ''"> and thumbnail = #{thumbnail}</if>
  52. <if test="duration != null "> and duration = #{duration}</if>
  53. <if test="talentId != null "> and talent_id = #{talentId}</if>
  54. <if test="courseId != null "> and course_id = #{courseId}</if>
  55. <if test="status != null "> and status = #{status}</if>
  56. <if test="courseSort != null "> and course_sort = #{courseSort}</if>
  57. <if test="questionBankId != null "> and question_bank_id = #{questionBankId}</if>
  58. <if test="userId != null "> and user_id = #{userId}</if>
  59. <if test="projectId != null "> and project_id = #{projectId}</if>
  60. <if test="userId != null "> and user_id = #{userId}</if>
  61. </where>
  62. </select>
  63. <select id="selectFsUserCourseVideoByVideoId" parameterType="Long" resultMap="FsUserCourseVideoResult">
  64. <include refid="selectFsUserCourseVideoVo"/>
  65. where video_id = #{videoId}
  66. </select>
  67. <insert id="insertFsUserCourseVideo" parameterType="FsUserCourseVideo" useGeneratedKeys="true" keyProperty="videoId">
  68. insert into fs_user_course_video
  69. <trim prefix="(" suffix=")" suffixOverrides=",">
  70. <if test="fileId != null">file_id,</if>
  71. <if test="title != null">title,</if>
  72. <if test="description != null">description,</if>
  73. <if test="videoUrl != null">video_url,</if>
  74. <if test="thumbnail != null">thumbnail,</if>
  75. <if test="duration != null">duration,</if>
  76. <if test="updateTime != null">update_time,</if>
  77. <if test="createTime != null">create_time,</if>
  78. <if test="talentId != null">talent_id,</if>
  79. <if test="courseId != null">course_id,</if>
  80. <if test="status != null">status,</if>
  81. <if test="courseSort != null">course_sort,</if>
  82. <if test="fileName != null">file_name,</if>
  83. <if test="isDel != null">is_del,</if>
  84. <if test="questionBankId != null">question_bank_id,</if>
  85. <if test="lineOne != null">line_one,</if>
  86. <if test="lineTwo != null">line_two,</if>
  87. <if test="lineThree != null">line_three,</if>
  88. <if test="uploadType != null">upload_type,</if>
  89. <if test="redPacketMoney != null">red_packet_money,</if>
  90. <if test="fileSize != null">file_size,</if>
  91. <if test="fileKey != null">file_key,</if>
  92. <if test="round != null">round,</if>
  93. <if test="packageJson != null">package_json,</if>
  94. <if test="isTranscode != null">is_transcode,</if>
  95. <if test="transcodeFileKey != null">transcode_file_key,</if>
  96. <if test="viewStartTime != null">view_start_time,</if>
  97. <if test="viewEndTime != null">view_end_time,</if>
  98. <if test="lastJoinTime != null">last_join_time,</if>
  99. <if test="projectId != null">project_id,</if>
  100. <if test="isProduct != null">is_product,</if>
  101. <if test="productId != null">product_id,</if>
  102. <if test="listingStartTime != null">listing_start_time,</if>
  103. <if test="listingEndTime != null">listing_end_time,</if>
  104. <if test="userId != null">user_id,</if>
  105. <if test="isFirst != null">is_first,</if>
  106. <if test="openClass != null">open_class,</if>
  107. </trim>
  108. <trim prefix="values (" suffix=")" suffixOverrides=",">
  109. <if test="fileId != null">#{fileId},</if>
  110. <if test="title != null">#{title},</if>
  111. <if test="description != null">#{description},</if>
  112. <if test="videoUrl != null">#{videoUrl},</if>
  113. <if test="thumbnail != null">#{thumbnail},</if>
  114. <if test="duration != null">#{duration},</if>
  115. <if test="updateTime != null">#{updateTime},</if>
  116. <if test="createTime != null">#{createTime},</if>
  117. <if test="talentId != null">#{talentId},</if>
  118. <if test="courseId != null">#{courseId},</if>
  119. <if test="status != null">#{status},</if>
  120. <if test="courseSort != null">#{courseSort},</if>
  121. <if test="fileName != null">#{fileName},</if>
  122. <if test="isDel != null">#{isDel},</if>
  123. <if test="questionBankId != null">#{questionBankId},</if>
  124. <if test="lineOne != null">#{lineOne},</if>
  125. <if test="lineTwo != null">#{lineTwo},</if>
  126. <if test="lineThree != null">#{lineThree},</if>
  127. <if test="uploadType != null">#{uploadType},</if>
  128. <if test="redPacketMoney != null">#{redPacketMoney},</if>
  129. <if test="fileSize != null">#{fileSize},</if>
  130. <if test="fileKey != null">#{fileKey},</if>
  131. <if test="round != null">#{round},</if>
  132. <if test="packageJson != null">#{packageJson},</if>
  133. <if test="isTranscode != null">#{isTranscode},</if>
  134. <if test="transcodeFileKey != null">#{transcodeFileKey},</if>
  135. <if test="viewStartTime != null">#{viewStartTime},</if>
  136. <if test="viewEndTime != null">#{viewEndTime},</if>
  137. <if test="lastJoinTime != null">#{lastJoinTime},</if>
  138. <if test="isProduct != null">#{isProduct},</if>
  139. <if test="productId != null">#{productId},</if>
  140. <if test="listingStartTime != null">#{listingStartTime},</if>
  141. <if test="listingEndTime != null">#{listingEndTime},</if>
  142. <if test="projectId != null">#{projectId},</if>
  143. <if test="userId != null">#{userId},</if>
  144. <if test="isFirst != null">#{isFirst},</if>
  145. <if test="openClass != null">#{openClass},</if>
  146. </trim>
  147. </insert>
  148. <insert id="insertBatchFsUserCourseVideo" parameterType="FsUserCourseVideo" useGeneratedKeys="true" keyProperty="videoId">
  149. insert into fs_user_course_video
  150. (
  151. title,
  152. video_url,
  153. thumbnail,
  154. duration,
  155. course_id,
  156. status,
  157. course_sort,
  158. file_name,
  159. question_bank_id,
  160. line_one,
  161. line_two,
  162. line_three,
  163. red_packet_money,
  164. file_size,
  165. file_key,
  166. is_transcode,
  167. user_id,
  168. project_id
  169. )
  170. values
  171. <foreach collection="collect" item="item" separator=",">
  172. (
  173. #{item.title},
  174. #{item.videoUrl},
  175. #{item.thumbnail},
  176. #{item.duration},
  177. #{item.courseId},
  178. #{item.status},
  179. #{item.courseSort},
  180. #{item.fileName},
  181. #{item.questionBankId},
  182. #{item.lineOne},
  183. #{item.lineTwo},
  184. #{item.lineThree},
  185. #{item.redPacketMoney},
  186. #{item.fileSize},
  187. #{item.fileKey},
  188. #{item.isTranscode},
  189. #{item.userId},
  190. #{item.projectId}
  191. )
  192. </foreach>
  193. </insert>
  194. <update id="updateFsUserCourseVideo" parameterType="FsUserCourseVideo">
  195. update fs_user_course_video
  196. <trim prefix="SET" suffixOverrides=",">
  197. <if test="fileId != null">file_id = #{fileId},</if>
  198. <if test="title != null">title = #{title},</if>
  199. <if test="description != null">description = #{description},</if>
  200. <if test="videoUrl != null">video_url = #{videoUrl},</if>
  201. <if test="thumbnail != null">thumbnail = #{thumbnail},</if>
  202. <if test="duration != null">duration = #{duration},</if>
  203. <if test="updateTime != null">update_time = #{updateTime},</if>
  204. <if test="createTime != null">create_time = #{createTime},</if>
  205. <if test="talentId != null">talent_id = #{talentId},</if>
  206. <if test="courseId != null">course_id = #{courseId},</if>
  207. <if test="status != null">status = #{status},</if>
  208. <if test="courseSort != null">course_sort = #{courseSort},</if>
  209. <if test="fileName != null">file_name = #{fileName},</if>
  210. <if test="isDel != null">is_del = #{isDel},</if>
  211. <if test="questionBankId != null">question_bank_id = #{questionBankId},</if>
  212. <if test="lineOne != null">line_one = #{lineOne},</if>
  213. <if test="lineTwo != null">line_two = #{lineTwo},</if>
  214. <if test="lineThree != null">line_three = #{lineThree},</if>
  215. <if test="uploadType != null">upload_type = #{uploadType},</if>
  216. <if test="redPacketMoney != null">red_packet_money = #{redPacketMoney},</if>
  217. <if test="fileSize != null">file_size = #{fileSize},</if>
  218. <if test="fileKey != null">file_key = #{fileKey},</if>
  219. <if test="round != null">round = #{round},</if>
  220. <if test="packageJson != null">package_json = #{packageJson},</if>
  221. <if test="isTranscode != null">is_transcode = #{isTranscode},</if>
  222. <if test="transcodeFileKey != null">transcode_file_key = #{transcodeFileKey},</if>
  223. <if test="viewStartTime != null">view_start_time = #{viewStartTime},</if>
  224. <if test="viewEndTime != null">view_end_time = #{viewEndTime},</if>
  225. <if test="lastJoinTime != null">last_join_time = #{lastJoinTime},</if>
  226. <if test="isProduct != null">is_product = #{isProduct},</if>
  227. <if test="productId != null">product_id = #{productId},</if>
  228. <if test="listingStartTime != null">listing_start_time = #{listingStartTime},</if>
  229. <if test="listingEndTime != null">listing_end_time = #{listingEndTime},</if>
  230. <if test="projectId != null">project_id = #{projectId},</if>
  231. <if test="isFirst != null">is_first = #{isFirst},</if>
  232. <if test="openClass != null">open_class = #{openClass},</if>
  233. </trim>
  234. where video_id = #{videoId}
  235. </update>
  236. <update id="deleteFsUserCourseVideoByVideoId" parameterType="String">
  237. update fs_user_course_video set is_del = 1 where video_id = #{videoId}
  238. </update>
  239. <update id="deleteFsUserCourseVideoByVideoIds" parameterType="String">
  240. update fs_user_course_video set is_del = 1 where video_id in
  241. <foreach item="videoId" collection="array" open="(" separator="," close=")">
  242. #{videoId}
  243. </foreach>
  244. </update>
  245. <update id="updates">
  246. update fs_user_course_video set view_start_time = #{viewStartTime},view_end_time = #{viewEndTime},last_join_time = #{lastJoinTime} where video_id in
  247. <foreach item="videoId" collection="ids" open="(" separator="," close=")">
  248. #{videoId}
  249. </foreach>
  250. </update>
  251. <select id="selectFsUserCourseVideoPageList" resultType="com.fs.course.vo.newfs.FsUserCourseVideoPageListVO">
  252. SELECT
  253. DISTINCT video.video_id,
  254. video.title,
  255. video.description,
  256. video.video_url,
  257. video.thumbnail,
  258. video.duration,
  259. video.course_id,
  260. video.STATUS,
  261. video.course_sort,
  262. course.course_name,
  263. fcpd.period_id,
  264. fcp.period_name,
  265. fcpd.id,
  266. if(ccut.start_date_time is null, fcpd.start_date_time, ccut.start_date_time) as startDateTime,
  267. if(ccut.end_date_time is null, fcpd.end_date_time, ccut.end_date_time) as endDateTime,
  268. course.project as projectId,
  269. fcp.max_view_num as maxViewNum
  270. FROM `fs_user_course_video` video
  271. left join fs_user_course_period_days fcpd on fcpd.video_id = video.video_id
  272. left join fs_user_course_period fcp on fcp.period_id = fcpd.period_id
  273. LEFT JOIN fs_user_course course ON video.course_id = course.course_id
  274. LEFT JOIN fs_user_course_company_user_time ccut ON ccut.period_id = fcpd.period_id
  275. AND ccut.course_id = fcpd.course_id
  276. AND ccut.video_id = fcpd.video_id
  277. AND ccut.company_user_id = #{companyUserId}
  278. where course.is_del = 0 and fcp.del_flag = 0 and fcpd.del_flag = 0
  279. AND FIND_IN_SET(#{companyId}, fcp.company_id)
  280. <if test="periodId != null and periodId !='' ">
  281. AND fcpd.period_id = #{periodId}
  282. </if>
  283. <if test="keyword != null and keyword !='' ">
  284. AND video.title LIKE concat('%',#{keyword},'%')
  285. </if>
  286. <!-- 营销提前查看天数逻辑 -->
  287. AND DATE_SUB(fcpd.day_date, INTERVAL fcp.max_view_num DAY) &lt;= now()
  288. order by video.course_sort
  289. </select>
  290. <select id="selectVideoListByMap" resultType="com.fs.his.vo.OptionsVO">
  291. select distinct
  292. ucv.video_id dictValue,
  293. ucv.title dictLabel
  294. from fs_user_course_video ucv
  295. left join fs_user_course_period_days ucpd on ucpd.video_id = ucv.video_id
  296. <where>
  297. <if test="params.name != null and params.name != ''">
  298. ucv.title like concat('%', #{params.name}, '%')
  299. </if>
  300. <if test="params.periodId != null">
  301. and ucpd.period_id = #{params.periodId}
  302. </if>
  303. </where>
  304. </select>
  305. <select id="selectFsUserCourseVideoListByMap" resultType="com.fs.course.vo.newfs.FsUserCourseVideoPageListVO">
  306. select
  307. video.video_id,
  308. video.title,
  309. video.description,
  310. video.video_url,
  311. video.thumbnail,
  312. video.duration,
  313. video.course_id,
  314. video.STATUS,
  315. video.course_sort,
  316. course.course_name,
  317. fcpd.period_id,
  318. fcp.period_name,
  319. fcpd.start_date_time,
  320. fcpd.end_date_time,
  321. fcpd.last_join_time,
  322. fcpd.id,
  323. fcp.period_name,
  324. if(ccut.start_date_time is null, fcpd.start_date_time, ccut.start_date_time) as startDateTime,
  325. if(ccut.end_date_time is null, fcpd.end_date_time, ccut.end_date_time) as endDateTime,
  326. course.project as projectId
  327. from `fs_user_course_video` video
  328. left join fs_user_course_period_days fcpd on fcpd.video_id = video.video_id
  329. left join fs_user_course_period fcp on fcp.period_id = fcpd.period_id
  330. left join fs_user_course course ON video.course_id = course.course_id
  331. LEFT JOIN fs_user_course_company_user_time ccut ON ccut.period_id = fcpd.period_id
  332. AND ccut.course_id = fcpd.course_id
  333. AND ccut.video_id = fcpd.video_id
  334. AND ccut.company_user_id = #{params.companyUserId}
  335. where course.is_del = 0 and fcp.del_flag = '0' and fcpd.del_flag = '0'
  336. <if test="params.companyId != null">
  337. and FIND_IN_SET(#{params.companyId}, fcp.company_id)
  338. </if>
  339. <if test="params.dayDate != null">
  340. and fcpd.day_date = #{params.dayDate}
  341. </if>
  342. <if test="params.keyword != null and params.keyword !='' ">
  343. AND video.title LIKE concat('%',#{params.keyword},'%')
  344. </if>
  345. and (
  346. (fcpd.start_date_time &lt;= CONCAT( CURDATE(), ' 23:59:59' ) and fcpd.end_date_time >= CONCAT( CURDATE(), ' 00:00:00' ))
  347. or (ccut.start_date_time &lt;= CONCAT( CURDATE(), ' 23:59:59' ) and ccut.end_date_time >= CONCAT( CURDATE(), ' 00:00:00' ))
  348. )
  349. order by video.course_sort
  350. </select>
  351. <select id="selectFsUserCourseVideoVoByVideoId" resultType="com.fs.course.vo.FsUserCourseVO">
  352. select
  353. video.video_id,
  354. video.title,
  355. course.course_id,
  356. course.course_name,
  357. fcp.period_id,
  358. fcp.period_name,
  359. c.training_camp_id,
  360. c.training_camp_name
  361. from `fs_user_course_video` video
  362. left join fs_user_course course ON video.course_id = course.course_id
  363. left join fs_user_course_period_days fcpd on fcpd.video_id = video.video_id
  364. left join fs_user_course_period fcp on fcp.period_id = fcpd.period_id
  365. left join fs_user_course_training_camp c on fcp.training_camp_id = c.training_camp_id
  366. where course.is_del = 0 and video.video_id = #{videoId}
  367. and fcp.period_id = #{periodId}
  368. and fcpd.del_flag = 0 and video.is_del = 0 and fcp.del_flag = '0' and c.del_flag = '0'
  369. limit 1
  370. </select>
  371. <select id="selectFsUserCourseVideoByVideoIdAndUserId" resultMap="FsUserCourseVideoResult">
  372. <include refid="selectFsUserCourseVideoVo"/>
  373. where video_id=#{videoId} and is_del = 0
  374. <if test="userId != null">
  375. and user_id = #{userId}
  376. </if>
  377. </select>
  378. <update id="updateRedPacketMoney">
  379. update fs_user_course_video set red_packet_money = #{redPacketMoney} where video_id = #{videoId}
  380. </update>
  381. <select id="selectByFileKey" resultMap="FsUserCourseVideoResult">
  382. <include refid="selectFsUserCourseVideoVo"/>
  383. <where>
  384. <if test="fileKey != null and fileKey != ''"> and file_key = #{fileKey}</if>
  385. </where>
  386. limit 1
  387. </select>
  388. </mapper>