LiveMapper.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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.live.mapper.LiveMapper">
  6. <resultMap type="Live" id="LiveResult">
  7. <result property="liveId" column="live_id" />
  8. <result property="companyId" column="company_id" />
  9. <result property="companyUserId" column="company_user_id" />
  10. <result property="talentId" column="talent_id" />
  11. <result property="liveName" column="live_name" />
  12. <result property="liveDesc" column="live_desc" />
  13. <result property="showType" column="show_type" />
  14. <result property="status" column="status" />
  15. <result property="anchorId" column="anchor_id" />
  16. <result property="liveType" column="live_type" />
  17. <result property="startTime" column="start_time" />
  18. <result property="finishTime" column="finish_time" />
  19. <result property="liveImgUrl" column="live_img_url" />
  20. <result property="liveConfig" column="live_config" />
  21. <result property="isShow" column="is_show" />
  22. <result property="isDel" column="is_del" />
  23. <result property="qwQrCode" column="qw_qr_code" />
  24. <result property="rtmpUrl" column="rtmp_url" />
  25. <result property="createTime" column="create_time" />
  26. <result property="createBy" column="create_by" />
  27. <result property="updateBy" column="update_by" />
  28. <result property="updateTime" column="update_time" />
  29. <result property="remark" column="remark" />
  30. <result property="configJson" column="config_json" />
  31. <result property="isAudit" column="is_audit" />
  32. <result property="idCardUrl" column="id_card_url" />
  33. <result property="liveCodeUrl" column="live_code_url" />
  34. </resultMap>
  35. <sql id="selectLiveVo">
  36. select live_id, company_id, company_user_id,talent_id, live_name, is_audit, live_desc, show_type, status, anchor_id, live_type, start_time, finish_time,
  37. live_img_url, live_config, id_card_url, is_show, is_del, qw_qr_code, rtmp_url, flv_hls_url,
  38. create_time, create_by, update_by, update_time, remark,config_json from live
  39. </sql>
  40. <select id="liveList" parameterType="Live" resultMap="LiveResult">
  41. select a.live_id, a.company_id, a.company_user_id,talent_id, a.live_name, a.is_audit, a.live_desc, a.show_type, a.status, a.anchor_id,
  42. a.live_type, a.start_time, a.finish_time, a.live_img_url, a.live_config, a.id_card_url, a.is_show, a.is_del, a.qw_qr_code, a.rtmp_url,
  43. a.flv_hls_url, a.create_time, a.create_by, a.update_by, a.update_time, a.remark,config_json, b.video_url,c.company_name,b.file_size
  44. from live
  45. a
  46. left join live_video b on a.live_id = b.live_id
  47. left join company c on a.company_id = c.company_id
  48. where 1=1 and a.is_del = 0 and a.is_show = 1 and a.status in (2,4) and b.video_type in (1,2)
  49. order by create_time desc
  50. </select>
  51. <select id="selectLiveList" parameterType="com.fs.live.domain.Live" resultMap="LiveResult">
  52. select a.live_id, a.company_id, a.company_user_id,talent_id, a.live_name, a.is_audit, a.live_desc, a.show_type, a.status, a.anchor_id,
  53. a.live_type, a.start_time, a.finish_time, a.live_img_url, a.live_config, a.id_card_url, a.is_show, a.is_del, a.qw_qr_code, a.rtmp_url,
  54. a.flv_hls_url, a.create_time, a.create_by, a.update_by, a.update_time, a.remark,config_json, b.video_url
  55. ,c.live_code_url,IFNULL(d.company_name, '总台') AS company_name,b.file_size
  56. from live a
  57. left join live_video b on a.live_id = b.live_id
  58. left join live_company_code c on a.live_id = c.live_id
  59. and c.company_id = #{companyId}
  60. and c.company_user_id = #{companyUserId}
  61. left join company d on a.company_id = d.company_id
  62. where 1=1 and a.is_del = 0 and b.video_type in (1,2)
  63. <if test="companyId != null "> and (a.company_id = #{companyId} or a.company_id is null )</if>
  64. <if test="companyName != null and companyName != ''">
  65. and (
  66. (d.company_name like concat('%', #{companyName}, '%'))
  67. or
  68. (#{companyName} = '总台' and a.company_id is null)
  69. )
  70. </if>
  71. <if test="talentId != null "> and talent_id = #{talentId}</if>
  72. <if test="liveName != null and liveName != ''"> and live_name like concat('%', #{liveName}, '%')</if>
  73. <if test="liveDesc != null and liveDesc != ''"> and live_desc = #{liveDesc}</if>
  74. <if test="showType != null "> and show_type = #{showType}</if>
  75. <if test="status != null "> and a.status = #{status}</if>
  76. <if test="anchorId != null "> and anchor_id = #{anchorId}</if>
  77. <if test="liveType != null "> and live_type = #{liveType}</if>
  78. <if test="startTimeS != null "> and a.start_time &gt; STR_TO_DATE(#{startTimeS}, '%Y-%m-%d %H:%i:%s')</if>
  79. <if test="endTimeE != null "> and a.finish_time &lt; STR_TO_DATE(#{endTimeE}, '%Y-%m-%d %H:%i:%s')</if>
  80. <if test="finishTime != null "> and finish_time = #{finishTime}</if>
  81. <if test="liveImgUrl != null and liveImgUrl != ''"> and live_img_url = #{liveImgUrl}</if>
  82. <if test="liveConfig != null and liveConfig != ''"> and live_config = #{liveConfig}</if>
  83. <if test="isShow != null "> and a.is_show = #{isShow}</if>
  84. <if test="qwQrCode != null and qwQrCode != ''"> and qw_qr_code = #{qwQrCode}</if>
  85. <if test="rtmpUrl != null and rtmpUrl != ''"> and rtmp_url = #{rtmpUrl}</if>
  86. <if test="flvHlsUrl != null and flvHlsUrl != ''"> and flv_hls_url = #{flvHlsUrl}</if>
  87. <if test="isAudit != null "> and is_audit = #{isAudit}</if>
  88. order by create_time desc
  89. </select>
  90. <select id="selectLiveByLiveId" parameterType="Long" resultMap="LiveResult">
  91. <include refid="selectLiveVo"/>
  92. where live_id = #{liveId}
  93. </select>
  94. <select id="selectLiveByLiveIdAndCompanyIdAndCompanyUserId" resultMap="LiveResult">
  95. <include refid="selectLiveVo"/>
  96. where live_id = #{liveId} and company_id = #{companyId} and company_user_id = #{companyUserId}
  97. </select>
  98. <select id="selectLiveToStudent" resultType="com.fs.live.domain.Live">
  99. <include refid="selectLiveVo"/>
  100. where 1=1
  101. <if test="status != null and status != ''">
  102. AND status = #{status}
  103. </if>
  104. <if test="liveName != null and liveName != null">
  105. AND live_name like concat('%', #{liveName}, '%')
  106. </if>
  107. <if test="startTime != null and startTime != '' and finishTime != null and finishTime != ''">
  108. AND start_time BETWEEN #{startTime} AND #{finishTime}
  109. </if>
  110. </select>
  111. <insert id="insertLive" parameterType="Live" useGeneratedKeys="true" keyProperty="liveId">
  112. insert into live
  113. <trim prefix="(" suffix=")" suffixOverrides=",">
  114. <if test="companyId != null">company_id,</if>
  115. <if test="companyUserId != null">company_user_id,</if>
  116. <if test="talentId != null">talent_id,</if>
  117. <if test="liveName != null">live_name,</if>
  118. <if test="liveDesc != null">live_desc,</if>
  119. <if test="showType != null">show_type,</if>
  120. <if test="status != null">status,</if>
  121. <if test="anchorId != null">anchor_id,</if>
  122. <if test="liveType != null">live_type,</if>
  123. <if test="startTime != null">start_time,</if>
  124. <if test="finishTime != null">finish_time,</if>
  125. <if test="liveImgUrl != null">live_img_url,</if>
  126. <if test="liveConfig != null">live_config,</if>
  127. <if test="isShow != null">is_show,</if>
  128. <if test="isDel != null">is_del,</if>
  129. <if test="qwQrCode != null">qw_qr_code,</if>
  130. <if test="rtmpUrl != null">rtmp_url,</if>
  131. <if test="createTime != null">create_time,</if>
  132. <if test="createBy != null">create_by,</if>
  133. <if test="updateBy != null">update_by,</if>
  134. <if test="updateTime != null">update_time,</if>
  135. <if test="remark != null">remark,</if>
  136. <if test="configJson != null">config_json,</if>
  137. <if test="flvHlsUrl != null">flv_hls_url,</if>
  138. <if test="isAudit != null">is_audit,</if>
  139. <if test="idCardUrl != null">id_card_url,</if>
  140. </trim>
  141. <trim prefix="values (" suffix=")" suffixOverrides=",">
  142. <if test="companyId != null">#{companyId},</if>
  143. <if test="companyUserId != null">#{companyUserId},</if>
  144. <if test="talentId != null">#{talentId},</if>
  145. <if test="liveName != null">#{liveName},</if>
  146. <if test="liveDesc != null">#{liveDesc},</if>
  147. <if test="showType != null">#{showType},</if>
  148. <if test="status != null">#{status},</if>
  149. <if test="anchorId != null">#{anchorId},</if>
  150. <if test="liveType != null">#{liveType},</if>
  151. <if test="startTime != null">#{startTime},</if>
  152. <if test="finishTime != null">#{finishTime},</if>
  153. <if test="liveImgUrl != null">#{liveImgUrl},</if>
  154. <if test="liveConfig != null">#{liveConfig},</if>
  155. <if test="isShow != null">#{isShow},</if>
  156. <if test="isDel != null">#{isDel},</if>
  157. <if test="qwQrCode != null">#{qwQrCode},</if>
  158. <if test="rtmpUrl != null">#{rtmpUrl},</if>
  159. <if test="createTime != null">#{createTime},</if>
  160. <if test="createBy != null">#{createBy},</if>
  161. <if test="updateBy != null">#{updateBy},</if>
  162. <if test="updateTime != null">#{updateTime},</if>
  163. <if test="remark != null">#{remark},</if>
  164. <if test="configJson != null">#{configJson},</if>
  165. <if test="flvHlsUrl != null">#{flvHlsUrl},</if>
  166. <if test="isAudit != null">#{isAudit},</if>
  167. <if test="idCardUrl != null">#{idCardUrl},</if>
  168. </trim>
  169. </insert>
  170. <update id="updateLive" parameterType="Live">
  171. update live
  172. <trim prefix="SET" suffixOverrides=",">
  173. <if test="talentId != null">talent_id = #{talentId},</if>
  174. <if test="liveName != null">live_name = #{liveName},</if>
  175. <if test="liveDesc != null">live_desc = #{liveDesc},</if>
  176. <if test="showType != null">show_type = #{showType},</if>
  177. <if test="status != null">status = #{status},</if>
  178. <if test="anchorId != null">anchor_id = #{anchorId},</if>
  179. <if test="liveType != null">live_type = #{liveType},</if>
  180. <if test="startTime != null">start_time = #{startTime},</if>
  181. <if test="finishTime != null">finish_time = #{finishTime},</if>
  182. <if test="finishTime == null">finish_time = NULL,</if>
  183. <if test="liveImgUrl != null">live_img_url = #{liveImgUrl},</if>
  184. <if test="liveConfig != null">live_config = #{liveConfig},</if>
  185. <if test="isShow != null">is_show = #{isShow},</if>
  186. <if test="isDel != null">is_del = #{isDel},</if>
  187. <if test="qwQrCode != null">qw_qr_code = #{qwQrCode},</if>
  188. <if test="rtmpUrl != null">rtmp_url = #{rtmpUrl},</if>
  189. <if test="createTime != null">create_time = #{createTime},</if>
  190. <if test="createBy != null">create_by = #{createBy},</if>
  191. <if test="updateBy != null">update_by = #{updateBy},</if>
  192. <if test="updateTime != null">update_time = #{updateTime},</if>
  193. <if test="remark != null">remark = #{remark},</if>
  194. <if test="configJson != null">config_json = #{configJson},</if>
  195. <if test="flvHlsUrl != null">flv_hls_url = #{flvHlsUrl},</if>
  196. <if test="isAudit != null">is_audit = #{isAudit},</if>
  197. <if test="idCardUrl != null">id_card_url = #{idCardUrl},</if>
  198. </trim>
  199. where live_id = #{liveId}
  200. </update>
  201. <delete id="deleteLiveByLiveId" parameterType="Long">
  202. delete from live where live_id = #{liveId}
  203. </delete>
  204. <delete id="deleteLiveByLiveIds" parameterType="String">
  205. delete from live where live_id in
  206. <foreach item="liveId" collection="array" open="(" separator="," close=")">
  207. #{liveId}
  208. </foreach>
  209. </delete>
  210. <update id="updateBatchLiveList" parameterType="com.fs.live.vo.LiveListVo">
  211. update live set is_show = #{liveVo.isShow},status = 3,finish_time = NOW() where live_id in
  212. <foreach item="liveId" collection="liveVo.liveIds" open="(" separator="," close=")">
  213. #{liveId}
  214. </foreach>
  215. </update>
  216. <update id="deleteBatchLiveList" parameterType="com.fs.live.vo.LiveListVo">
  217. update live set is_del = 1
  218. WHERE company_id = #{liveVo.companyId} and company_user_id = #{liveVo.companyUserId} and live_id IN
  219. <foreach item="liveId" collection="liveVo.liveIds" open="(" separator="," close=")">
  220. #{liveId}
  221. </foreach>
  222. </update>
  223. <update id="handleShelfOrUnAdmin" parameterType="com.fs.live.vo.LiveListVo">
  224. update live set is_show = #{liveVo.isShow},status = 3,finish_time = NOW() where live_id in
  225. <foreach item="liveId" collection="liveVo.liveIds" open="(" separator="," close=")">
  226. #{liveId}
  227. </foreach>
  228. </update>
  229. <update id="handleDeleteSelectedAdmin" parameterType="com.fs.live.vo.LiveListVo">
  230. update live set is_del = 1
  231. WHERE live_id IN
  232. <foreach item="liveId" collection="liveVo.liveIds" open="(" separator="," close=")">
  233. #{liveId}
  234. </foreach>
  235. </update>
  236. <update id="updateLiveList">
  237. <foreach collection="liveList" item="live" separator=";">
  238. UPDATE live
  239. <set>
  240. <if test="live.liveName != null and live.liveName != ''">live_name = #{live.liveName},</if>
  241. <if test="live.liveType != null">live_type = #{live.liveType},</if>
  242. <if test="live.status != null">status = #{live.status},</if>
  243. <if test="live.startTime != null">start_time = #{live.startTime},</if>
  244. <if test="live.finishTime != null">finish_time = #{live.finishTime},</if>
  245. <if test="live.rtmpUrl != null and live.rtmpUrl != ''">rtmp_url = #{live.rtmpUrl},</if>
  246. <if test="live.flvHlsUrl != null and live.flvHlsUrl != ''">flv_hls_url = #{live.flvHlsUrl},</if>
  247. <if test="live.videoUrl != null and live.videoUrl != ''">video_url = #{live.videoUrl},</if>
  248. <if test="live.duration != null and live.duration != ''">duration = #{live.duration},</if>
  249. <if test="live.companyId != null">company_id = #{live.companyId},</if>
  250. <if test="live.companyUserId != null">company_user_id = #{live.companyUserId},</if>
  251. <if test="live.isAudit != null">is_audit = #{live.isAudit},</if>
  252. <if test="live.isShow != null">is_show = #{live.isShow},</if>
  253. <if test="live.isDel != null">is_del = #{live.isDel},</if>
  254. <if test="live.liveConfig != null and live.liveConfig != ''">live_config = #{live.liveConfig},</if>
  255. <if test="live.remark != null and live.remark != ''">remark = #{live.remark},</if>
  256. update_time = NOW()
  257. </set>
  258. WHERE live_id = #{live.liveId}
  259. </foreach>
  260. </update>
  261. <update id="updateStatusAndTimeBatchById">
  262. <foreach collection="liveList" item="live" separator=";">
  263. UPDATE live
  264. <set>
  265. <if test="live.status != null">status = #{live.status},</if>
  266. update_time = NOW()
  267. </set>
  268. WHERE live_id = #{live.liveId}
  269. </foreach>
  270. </update>
  271. </mapper>