LiveMapper.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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. </resultMap>
  33. <sql id="selectLiveVo">
  34. 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, live_img_url, live_config, id_card_url, is_show, is_del, qw_qr_code, rtmp_url, flv_hls_url, create_time, create_by, update_by, update_time, remark,config_json from live
  35. </sql>
  36. <select id="selectLiveList" parameterType="Live" resultMap="LiveResult">
  37. 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,
  38. 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,
  39. a.flv_hls_url, a.create_time, a.create_by, a.update_by, a.update_time, a.remark,config_json, b.video_url from live
  40. a
  41. left join live_video b on a.live_id = b.live_id
  42. where 1=1 and is_del = 0
  43. <if test="companyId != null "> and company_id = #{companyId}</if>
  44. <if test="companyUserId != null "> and company_user_id = #{companyUserId}</if>
  45. <if test="talentId != null "> and talent_id = #{talentId}</if>
  46. <if test="liveName != null and liveName != ''"> and live_name like concat('%', #{liveName}, '%')</if>
  47. <if test="liveDesc != null and liveDesc != ''"> and live_desc = #{liveDesc}</if>
  48. <if test="showType != null "> and show_type = #{showType}</if>
  49. <if test="status != null "> and status = #{status}</if>
  50. <if test="anchorId != null "> and anchor_id = #{anchorId}</if>
  51. <if test="liveType != null "> and live_type = #{liveType}</if>
  52. <if test="startTime != null "> and start_time = #{startTime}</if>
  53. <if test="finishTime != null "> and finish_time = #{finishTime}</if>
  54. <if test="liveImgUrl != null and liveImgUrl != ''"> and live_img_url = #{liveImgUrl}</if>
  55. <if test="liveConfig != null and liveConfig != ''"> and live_config = #{liveConfig}</if>
  56. <if test="isShow != null "> and is_show = #{isShow}</if>
  57. <if test="qwQrCode != null and qwQrCode != ''"> and qw_qr_code = #{qwQrCode}</if>
  58. <if test="rtmpUrl != null and rtmpUrl != ''"> and rtmp_url = #{rtmpUrl}</if>
  59. <if test="flvHlsUrl != null and flvHlsUrl != ''"> and flv_hls_url = #{flvHlsUrl}</if>
  60. <if test="isAudit != null and isAudit != ''"> and is_audit = #{isAudit}</if>
  61. order by create_time desc
  62. </select>
  63. <select id="selectLiveByLiveId" parameterType="Long" resultMap="LiveResult">
  64. <include refid="selectLiveVo"/>
  65. where live_id = #{liveId}
  66. </select>
  67. <select id="selectLiveByLiveIdAndCompanyIdAndCompanyUserId" resultMap="LiveResult">
  68. <include refid="selectLiveVo"/>
  69. where live_id = #{liveId} and company_id = #{companyId} and company_user_id = #{companyUserId}
  70. </select>
  71. <select id="selectLiveToStudent" resultType="com.fs.live.domain.Live">
  72. <include refid="selectLiveVo"/>
  73. where 1=1
  74. <if test="status != null and status != ''">
  75. AND status = #{status}
  76. </if>
  77. <if test="liveName != null and liveName != null">
  78. AND live_name like concat('%', #{liveName}, '%')
  79. </if>
  80. <if test="startTime != null and startTime != '' and finishTime != null and finishTime != ''">
  81. AND start_time BETWEEN #{startTime} AND #{finishTime}
  82. </if>
  83. </select>
  84. <insert id="insertLive" parameterType="Live" useGeneratedKeys="true" keyProperty="liveId">
  85. insert into live
  86. <trim prefix="(" suffix=")" suffixOverrides=",">
  87. <if test="companyId != null">company_id,</if>
  88. <if test="companyUserId != null">company_user_id,</if>
  89. <if test="talentId != null">talent_id,</if>
  90. <if test="liveName != null">live_name,</if>
  91. <if test="liveDesc != null">live_desc,</if>
  92. <if test="showType != null">show_type,</if>
  93. <if test="status != null">status,</if>
  94. <if test="anchorId != null">anchor_id,</if>
  95. <if test="liveType != null">live_type,</if>
  96. <if test="startTime != null">start_time,</if>
  97. <if test="finishTime != null">finish_time,</if>
  98. <if test="liveImgUrl != null">live_img_url,</if>
  99. <if test="liveConfig != null">live_config,</if>
  100. <if test="isShow != null">is_show,</if>
  101. <if test="isDel != null">is_del,</if>
  102. <if test="qwQrCode != null">qw_qr_code,</if>
  103. <if test="rtmpUrl != null">rtmp_url,</if>
  104. <if test="createTime != null">create_time,</if>
  105. <if test="createBy != null">create_by,</if>
  106. <if test="updateBy != null">update_by,</if>
  107. <if test="updateTime != null">update_time,</if>
  108. <if test="remark != null">remark,</if>
  109. <if test="configJson != null">config_json,</if>
  110. <if test="flvHlsUrl != null">flv_hls_url,</if>
  111. <if test="isAudit != null">is_audit,</if>
  112. </trim>
  113. <trim prefix="values (" suffix=")" suffixOverrides=",">
  114. <if test="companyId != null">#{companyId},</if>
  115. <if test="companyUserId != null">#{companyUserId},</if>
  116. <if test="talentId != null">#{talentId},</if>
  117. <if test="liveName != null">#{liveName},</if>
  118. <if test="liveDesc != null">#{liveDesc},</if>
  119. <if test="showType != null">#{showType},</if>
  120. <if test="status != null">#{status},</if>
  121. <if test="anchorId != null">#{anchorId},</if>
  122. <if test="liveType != null">#{liveType},</if>
  123. <if test="startTime != null">#{startTime},</if>
  124. <if test="finishTime != null">#{finishTime},</if>
  125. <if test="liveImgUrl != null">#{liveImgUrl},</if>
  126. <if test="liveConfig != null">#{liveConfig},</if>
  127. <if test="isShow != null">#{isShow},</if>
  128. <if test="isDel != null">#{isDel},</if>
  129. <if test="qwQrCode != null">#{qwQrCode},</if>
  130. <if test="rtmpUrl != null">#{rtmpUrl},</if>
  131. <if test="createTime != null">#{createTime},</if>
  132. <if test="createBy != null">#{createBy},</if>
  133. <if test="updateBy != null">#{updateBy},</if>
  134. <if test="updateTime != null">#{updateTime},</if>
  135. <if test="remark != null">#{remark},</if>
  136. <if test="configJson != null">#{configJson},</if>
  137. <if test="flvHlsUrl != null">#{flvHlsUrl},</if>
  138. <if test="isAudit != null">#{isAudit},</if>
  139. </trim>
  140. </insert>
  141. <update id="updateLive" parameterType="Live">
  142. update live
  143. <trim prefix="SET" suffixOverrides=",">
  144. <if test="talentId != null">talent_id = #{talentId},</if>
  145. <if test="liveName != null">live_name = #{liveName},</if>
  146. <if test="liveDesc != null">live_desc = #{liveDesc},</if>
  147. <if test="showType != null">show_type = #{showType},</if>
  148. <if test="status != null">status = #{status},</if>
  149. <if test="anchorId != null">anchor_id = #{anchorId},</if>
  150. <if test="liveType != null">live_type = #{liveType},</if>
  151. <if test="startTime != null">start_time = #{startTime},</if>
  152. <if test="finishTime != null">finish_time = #{finishTime},</if>
  153. <if test="finishTime == null">finish_time = NULL,</if>
  154. <if test="liveImgUrl != null">live_img_url = #{liveImgUrl},</if>
  155. <if test="liveConfig != null">live_config = #{liveConfig},</if>
  156. <if test="isShow != null">is_show = #{isShow},</if>
  157. <if test="isDel != null">is_del = #{isDel},</if>
  158. <if test="qwQrCode != null">qw_qr_code = #{qwQrCode},</if>
  159. <if test="rtmpUrl != null">rtmp_url = #{rtmpUrl},</if>
  160. <if test="createTime != null">create_time = #{createTime},</if>
  161. <if test="createBy != null">create_by = #{createBy},</if>
  162. <if test="updateBy != null">update_by = #{updateBy},</if>
  163. <if test="updateTime != null">update_time = #{updateTime},</if>
  164. <if test="remark != null">remark = #{remark},</if>
  165. <if test="configJson != null">config_json = #{configJson},</if>
  166. <if test="flvHlsUrl != null">flv_hls_url = #{flvHlsUrl},</if>
  167. <if test="isAudit != null">is_audit = #{isAudit},</if>
  168. <if test="idCardUrl != null">id_card_url = #{idCardUrl},</if>
  169. </trim>
  170. where live_id = #{liveId}
  171. </update>
  172. <delete id="deleteLiveByLiveId" parameterType="Long">
  173. delete from live where live_id = #{liveId}
  174. </delete>
  175. <delete id="deleteLiveByLiveIds" parameterType="String">
  176. delete from live where live_id in
  177. <foreach item="liveId" collection="array" open="(" separator="," close=")">
  178. #{liveId}
  179. </foreach>
  180. </delete>
  181. <update id="updateBatchLiveList" parameterType="com.fs.live.vo.LiveListVo">
  182. update live set is_show = #{liveVo.isShow},status = 3,finish_time = NOW() where company_id = #{liveVo.companyId} and company_user_id = #{liveVo.companyUserId} and live_id in
  183. <foreach item="liveId" collection="liveVo.liveIds" open="(" separator="," close=")">
  184. #{liveId}
  185. </foreach>
  186. </update>
  187. <update id="deleteBatchLiveList" parameterType="com.fs.live.vo.LiveListVo">
  188. update live set is_del = 1
  189. WHERE company_id = #{liveVo.companyId} and company_user_id = #{liveVo.companyUserId} and live_id IN
  190. <foreach item="liveId" collection="liveVo.liveIds" open="(" separator="," close=")">
  191. #{liveId}
  192. </foreach>
  193. </update>
  194. <update id="handleShelfOrUnAdmin" parameterType="com.fs.live.vo.LiveListVo">
  195. update live set is_show = #{liveVo.isShow},status = 3,finish_time = NOW() where live_id in
  196. <foreach item="liveId" collection="liveVo.liveIds" open="(" separator="," close=")">
  197. #{liveId}
  198. </foreach>
  199. </update>
  200. <update id="handleDeleteSelectedAdmin" parameterType="com.fs.live.vo.LiveListVo">
  201. update live set is_del = 1
  202. WHERE live_id IN
  203. <foreach item="liveId" collection="liveVo.liveIds" open="(" separator="," close=")">
  204. #{liveId}
  205. </foreach>
  206. </update>
  207. </mapper>