SubjectMapper.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <!--
  4. 这个文件是自动生成的。
  5. 不要修改此文件。所有改动将在下次重新自动生成时丢失。
  6. -->
  7. <mapper namespace="com.yonge.cooleshow.biz.dal.dao.SubjectDao">
  8. <resultMap type="com.yonge.cooleshow.biz.dal.entity.Subject" id="Subject">
  9. <result column="id_" property="id"/>
  10. <result column="cbs_subject_id_" property="cbsSubjectId"/>
  11. <result column="name_" property="name"/>
  12. <result column="code_" property="code"/>
  13. <result column="parent_subject_id_" property="parentSubjectId"/>
  14. <result column="img_" property="img"/>
  15. <result column="ai_default_frequency_" property="aiDefaultFrequency"/>
  16. <result column="desc_" property="desc"/>
  17. <result column="create_time_" property="createTime"/>
  18. <result column="update_time_" property="updateTime"/>
  19. <result column="del_flag_" property="delFlag"/>
  20. <result column="instrument_id_" property="instrumentId"/>
  21. </resultMap>
  22. <!-- 根据主键查询一条记录 -->
  23. <select id="get" resultMap="Subject">
  24. SELECT * FROM subject WHERE del_flag_ = 0 and id_ = #{id}
  25. </select>
  26. <!-- 全查询 -->
  27. <select id="findAll" resultMap="Subject">
  28. SELECT * FROM subject where del_flag_ = 0 ORDER BY id_
  29. </select>
  30. <select id="subjectSelect" resultType="com.yonge.cooleshow.biz.dal.entity.Subject">
  31. select t.* from subject t
  32. join (
  33. select a.subject_id_ from (
  34. <trim prefixOverrides="union all">
  35. <if test="type == null or type =='MUSIC'">
  36. union all
  37. (select a.music_subject_ as subject_id_ from music_sheet a
  38. where ((a.del_flag_ = 0 and a.state_ = 1) or (a.tenant_del_flag_ =0 and a.tenant_state_ = 1)) AND a.cbs_music_sheet_id_ IS NOT NULL
  39. GROUP BY a.music_subject_)
  40. </if>
  41. <if test="type == null or type =='ALBUM'">
  42. union all
  43. (SELECT cm.subject_id_ from music_album cm WHERE cm.album_status_ = 1 and cm.del_flag_ = 0 GROUP BY cm.subject_id_)
  44. </if>
  45. <if test="type == null or type =='VIDEO'">
  46. union all
  47. (select a.lesson_subject_ as subject_id_ from video_lesson_group a
  48. where a.audit_status_ = 'PASS' and a.shelves_flag_ = 1
  49. GROUP BY a.lesson_subject_)
  50. </if>
  51. <if test="type == null or type =='PIANO_ROOM'">
  52. union all
  53. (select a.subject_id_ as subject_id_ from course_group a
  54. where a.type_ = 'PIANO_ROOM_CLASS' and a.status_ in ('ING','COMPLETE','APPLY')
  55. GROUP BY a.subject_id_)
  56. </if>
  57. <if test="type == null or type =='PRACTICE'">
  58. union all
  59. (select a.subject_id_ as subject_id_ from course_group a
  60. where a.type_ = 'PRACTICE' and a.status_ in ('ING','COMPLETE','APPLY')
  61. GROUP BY a.subject_id_)
  62. </if>
  63. <if test="type == null or type =='LIVE'">
  64. union all
  65. (select a.subject_id_ as subject_id_ from course_group a
  66. where a.type_ = 'LIVE' and a.status_ in ('APPLY')
  67. GROUP BY a.subject_id_)
  68. </if>
  69. </trim>
  70. ) a group by a.subject_id_
  71. ) a on t.id_ = a.subject_id_
  72. where t.parent_subject_id_ != 0 group by t.id_
  73. </select>
  74. <!-- 向数据库增加一条记录 -->
  75. <insert id="insert" parameterType="com.yonge.cooleshow.biz.dal.entity.Subject" useGeneratedKeys="true"
  76. keyColumn="id"
  77. keyProperty="id">
  78. INSERT INTO subject (id_,name_,code_,parent_subject_id_,img_,create_time_,update_time_,desc_,ai_default_frequency_,cbs_subject_id_)
  79. VALUES(#{id},#{name},#{code},#{parentSubjectId},#{img},now(),now(),#{desc},#{aiDefaultFrequency},#{cbsSubjectId})
  80. </insert>
  81. <!-- 根据主键查询一条记录 -->
  82. <update id="update" parameterType="com.yonge.cooleshow.biz.dal.entity.Subject">
  83. UPDATE subject
  84. <set>
  85. <if test="cbsSubjectId != null">
  86. cbs_subject_id_ = #{cbsSubjectId},
  87. </if>
  88. <if test="delFlag != null">
  89. del_flag_ = #{delFlag},
  90. </if>
  91. <if test="enableFlag != null">
  92. enable_flag_ = #{enableFlag},
  93. </if>
  94. <if test="parentSubjectId != null">
  95. parent_subject_id_ = #{parentSubjectId},
  96. </if>
  97. <if test="code != null">
  98. code_ = #{code},
  99. </if>
  100. <if test="img != null">
  101. img_ = #{img},
  102. </if>
  103. <if test="updateTime != null">
  104. update_time_ = NOW(),
  105. </if>
  106. <if test="name != null">
  107. name_ = #{name},
  108. </if>
  109. <if test="desc != null">
  110. desc_ = #{desc},
  111. </if>
  112. <if test="aiDefaultFrequency != null">
  113. ai_default_frequency_ = #{aiDefaultFrequency},
  114. </if>
  115. </set>
  116. WHERE id_ = #{id}
  117. </update>
  118. <!-- 根据主键删除一条记录 -->
  119. <update id="delete">
  120. UPDATE `subject` SET del_flag_ = 1 WHERE id_ = #{id} OR parent_subject_id_ = #{id}
  121. </update>
  122. <delete id="deleteById">
  123. update subject set del_flag_ = 1 where id_ = #{id}
  124. </delete>
  125. <!-- 分页查询 -->
  126. <select id="queryPage" resultMap="Subject" parameterType="map">
  127. SELECT * FROM subject
  128. <include refid="querySubPageSql"/>
  129. ORDER BY id_
  130. <include refid="global.limit"/>
  131. </select>
  132. <!-- 查询当前表的总记录数 -->
  133. <select id="queryCount" resultType="int">
  134. SELECT COUNT(*) FROM subject
  135. <include refid="querySubPageSql"/>
  136. </select>
  137. <select id="findByParentId" resultMap="Subject">
  138. SELECT * FROM subject
  139. where del_flag_ = 0
  140. <if test="parentId != null">
  141. AND parent_subject_id_ = #{parentId}
  142. </if>
  143. </select>
  144. <sql id="querySubPageSql">
  145. where del_flag_ = 0
  146. <if test="parentId != null">
  147. AND parent_subject_id_ = #{parentId}
  148. </if>
  149. <if test="delFlag != null">
  150. AND del_flag_ = #{delFlag}
  151. </if>
  152. <if test="search != null and search != ''">
  153. AND (id_ like concat('%',#{search},'%') or name_ like concat('%',#{search},'%'))
  154. </if>
  155. <if test="queryType != null and queryType == 'category'">
  156. and (parent_subject_id_ = 0 or parent_subject_id_ is null)
  157. </if>
  158. <if test="queryType != null and queryType == 'list'">
  159. and parent_subject_id_ > 0
  160. </if>
  161. </sql>
  162. <select id="findBySubjectByIdList" resultMap="Subject">
  163. SELECT * FROM `subject` WHERE del_flag_ = 0 AND FIND_IN_SET(id_,#{subjectIdList})
  164. </select>
  165. <select id="findBySubjectIds" resultMap="Subject">
  166. SELECT * FROM subject WHERE del_flag_ = 0 and id_ IN
  167. <foreach collection="subjectIds" item="subjectId" separator="," open="(" close=")">
  168. #{subjectId}
  169. </foreach>
  170. </select>
  171. <select id="selectSubjectById" resultType="com.yonge.cooleshow.biz.dal.entity.Subject"
  172. parameterType="java.lang.String">
  173. SELECT * FROM subject WHERE del_flag_ = 0 and id_=#{lessonSubject}
  174. </select>
  175. <select id="queryByCode" resultType="com.yonge.cooleshow.biz.dal.entity.Subject"
  176. parameterType="java.lang.String">
  177. SELECT * FROM subject WHERE del_flag_ = 0 and code_ = #{code}
  178. </select>
  179. <select id="queryByName" resultType="com.yonge.cooleshow.biz.dal.entity.Subject"
  180. parameterType="java.lang.String">
  181. SELECT * FROM subject WHERE del_flag_ = 0 and name_ = #{name}
  182. </select>
  183. <select id="useSubject" resultType="java.lang.Boolean">
  184. select
  185. case when (
  186. select count(1) from teacher a where find_in_set(t.id_,a.subject_id_)
  187. )> 0 then 1 when (
  188. select count(1) from student a where find_in_set(t.id_,a.subject_id_)
  189. )> 0 then 1 else 0 end
  190. from `subject` t
  191. where t.id_ = #{id}
  192. </select>
  193. <!--声部模糊匹配-->
  194. <select id="getSubjectMatchByName" resultType="com.yonge.cooleshow.biz.dal.entity.Subject">
  195. SELECT * FROM subject WHERE del_flag_ = 0 and name_ LIKE CONCAT('%', #{name}, '%') LIMIT 1
  196. </select>
  197. <select id="getByCbsId" resultType="com.yonge.cooleshow.biz.dal.entity.Subject">
  198. SELECT * FROM `subject` WHERE cbs_subject_id_ = #{subjectId} AND del_flag_ = 0 LIMIT 1
  199. </select>
  200. <select id="queryCbsList"
  201. resultType="com.dayaedu.cbs.openfeign.wrapper.music.CbsSubjectApiWrapper$Subject">
  202. SELECT id_ subjectId,cbs_subject_id_ cbsSubjectId,name_ subjectName,code_ code FROM `subject`
  203. WHERE del_flag_ = 0 AND cbs_subject_id_ IS NOT NULL
  204. <if test="query.cbsSubjectIds != null and query.cbsSubjectIds.size > 0">
  205. AND cbs_subject_id_ IN
  206. <foreach collection="query.cbsSubjectIds" item="cbsSubjectId" open="(" close=")" separator=",">
  207. #{cbsSubjectId}
  208. </foreach>
  209. </if>
  210. <if test="query.subjectIds != null and query.subjectIds.size > 0">
  211. AND id_ IN
  212. <foreach collection="query.subjectIds" item="subjectId" open="(" close=")" separator=",">
  213. #{subjectId}
  214. </foreach>
  215. </if>
  216. </select>
  217. <select id="getAll" resultMap="Subject">
  218. SELECT * FROM subject
  219. </select>
  220. <select id="getByCbsSubjectIds" resultMap="Subject">
  221. select * from subject where find_in_set(cbs_subject_id_,#{subjectIds})
  222. </select>
  223. <select id="findCount" resultType="java.lang.Integer">
  224. select count(DISTINCT t.id_) from
  225. (SELECT t.id_
  226. FROM subject t
  227. LEFT JOIN instrument i on t.id_ = i.subject_id_
  228. <where>
  229. <if test="parentSubjectId != null">
  230. AND t.parent_subject_id_ = #{parentSubjectId}
  231. </if>
  232. <if test="parentSubjectId == null">
  233. AND t.parent_subject_id_ != 0 AND t.cbs_subject_id_ is not null
  234. </if>
  235. <if test="keyword != null and keyword != ''">
  236. AND (t.name_ LIKE CONCAT('%',#{keyword},'%') OR t.code_ LIKE CONCAT('%',#{keyword},'%'))
  237. </if>
  238. <if test="delFlag != null">
  239. AND t.del_flag_ = #{delFlag}
  240. </if>
  241. <if test="subjectId != null">
  242. AND t.id_ = #{subjectId}
  243. </if>
  244. <if test="subjectIds != null">
  245. AND find_in_set(t.id_,#{subjectIds})
  246. </if>
  247. <if test="instrumentIds != null">
  248. AND find_in_set(i.id_, #{instrumentIds})
  249. </if>
  250. <if test="enableFlag != null">
  251. AND t.enable_flag_ = #{enableFlag} and i.enable_flag_ = #{enableFlag}
  252. </if>
  253. </where>
  254. group by t.id_
  255. <if test="hasInstrument != null">
  256. <if test="hasInstrument == true">
  257. having count(i.id_) > 0
  258. </if>
  259. <if test="hasInstrument == false">
  260. having count(i.id_) = 0
  261. </if>
  262. </if>) t
  263. </select>
  264. <sql id="baseColumns">
  265. t.id_ as id
  266. , t.name_ as name
  267. , t.code_ as code
  268. , t.parent_subject_id_ as parentSubjectId
  269. , t.img_ as img
  270. , t.del_flag_ as delFlag
  271. , t.update_time_ as updateTime
  272. , t.create_time_ as createTime
  273. , t.enable_flag_ as enableFlag
  274. ,t.orientation_ as orientation
  275. ,t.enable_flag_ as enableFlag
  276. ,t.logo_ as logo
  277. ,t.media_ as media
  278. ,t.cbs_subject_id_ as cbsSubjectId
  279. </sql>
  280. <select id="findPage" resultType="com.yonge.cooleshow.biz.dal.wrapper.SubjectWrapper$Subject">
  281. SELECT
  282. <include refid="baseColumns" />
  283. FROM subject t
  284. LEFT JOIN instrument i on t.id_ = i.subject_id_
  285. <where>
  286. <if test="parentSubjectId != null">
  287. AND t.parent_subject_id_ = #{parentSubjectId}
  288. </if>
  289. <if test="parentSubjectId == null">
  290. AND t.parent_subject_id_ != 0 AND t.cbs_subject_id_ is not null
  291. </if>
  292. <if test="keyword != null and keyword != ''">
  293. AND (t.name_ LIKE CONCAT('%',#{keyword},'%') OR t.code_ LIKE CONCAT('%',#{keyword},'%'))
  294. </if>
  295. <if test="delFlag != null">
  296. AND t.del_flag_ = #{delFlag}
  297. </if>
  298. <if test="subjectId != null">
  299. AND t.id_ = #{subjectId}
  300. </if>
  301. <if test="subjectIds != null">
  302. AND find_in_set(t.id_,#{subjectIds})
  303. </if>
  304. <if test="instrumentIds != null">
  305. AND find_in_set(i.id_, #{instrumentIds})
  306. </if>
  307. <if test="enableFlag != null">
  308. AND t.enable_flag_ = #{enableFlag} and i.enable_flag_ = #{enableFlag}
  309. </if>
  310. </where>
  311. group by t.id_
  312. <if test="hasInstrument != null">
  313. <if test="hasInstrument == true">
  314. having count(i.id_) > 0
  315. </if>
  316. <if test="hasInstrument == false">
  317. having count(i.id_) = 0
  318. </if>
  319. </if>
  320. <include refid="global.limit"/>
  321. </select>
  322. <select id="notInSubjectIds" resultMap="Subject">
  323. SELECT * FROM subject WHERE del_flag_ = 0 and id_ != #{subjectId}
  324. </select>
  325. <update id="updateCbsSubjectIdNull">
  326. update subject set cbs_subject_id_ = null where id_ = #{subjectId}
  327. </update>
  328. <!--声部模糊匹配-->
  329. </mapper>