CourseCoursewareMapper.xml 4.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <mapper namespace="com.yonge.cooleshow.biz.dal.dao.CourseCoursewareDao">
  4. <resultMap id="BaseResultMap" type="com.yonge.cooleshow.biz.dal.entity.CourseCourseware">
  5. <result column="id_" property="id" />
  6. <result column="user_id_" property="userId" />
  7. <result column="client_type_" property="clientType" />
  8. <result column="music_sheet_id_" property="musicSheetId" />
  9. <result column="create_time_" property="createTime" />
  10. <result column="update_time_" property="updateTime" />
  11. </resultMap>
  12. <!-- 表字段 -->
  13. <sql id="baseColumns">
  14. t.id_ as id
  15. , t.user_id_ as userId
  16. , t.client_type_ as clientType
  17. ,t.music_sheet_id_ as musicSheetId
  18. , t.create_time_ as createTime
  19. , t.update_time_ as updateTime
  20. </sql>
  21. <select id="detail" resultType="com.yonge.cooleshow.biz.dal.vo.CourseCoursewareVo">
  22. SELECT
  23. <include refid="baseColumns"/>
  24. FROM course_courseware t
  25. where t.id_ = #{id}
  26. </select>
  27. <select id="selectPage" resultType="com.yonge.cooleshow.biz.dal.vo.CourseCoursewareVo">
  28. SELECT
  29. <include refid="baseColumns" />
  30. ,ms.cbs_music_sheet_id_ as cbsMusicSheetId
  31. FROM course_courseware t
  32. left join music_sheet ms on t.music_sheet_id_ = ms.id_
  33. <where>
  34. t.del_flag_ = 0 AND ms.cbs_music_sheet_id_ IS NOT NULL
  35. <if test="param.userId != null">
  36. and t.user_id_ = #{param.userId}
  37. </if>
  38. <if test="param.clientType != null">
  39. and t.client_type_ = #{param.clientType}
  40. </if>
  41. <if test="param.idAndName != null and param.idAndName != ''">
  42. and (ms.music_sheet_name_ LIKE CONCAT('%',#{param.idAndName},'%') or ms.cbs_music_sheet_id_ = #{param.idAndName})
  43. </if>
  44. <if test="param.musicTagIdList != null and param.musicTagIdList.size() != 0">
  45. and
  46. <foreach collection="param.musicTagIdList" open="(" close=")" separator="or" item="item">
  47. find_in_set(#{item},ms.music_tag_)
  48. </foreach>
  49. </if>
  50. <if test="param.subjectIdList != null and param.subjectIdList.size() != 0">
  51. and (ms.music_subject_ is null or ms.music_subject_ = '' OR ms.music_sheet_type_ = 'CONCERT' OR ms.is_all_subject_ OR
  52. <foreach collection="param.subjectIdList" separator="or" item="item" open="(" close=")">
  53. find_in_set(#{item},ms.music_subject_)
  54. </foreach>)
  55. </if>
  56. <if test="param.status != null and param.status.code == 1">
  57. and (ms.payment_type_ like '%FREE%'
  58. or EXISTS (select * from music_sheet_purchase_record mspr where mspr.music_sheet_id_ = ms.id_ and mspr.student_id_ = t.user_id_ and mspr.order_status_ = 'PAID' and mspr.purchase_type_ = 'MUSIC' and mspr.client_type_ = 'TEACHER')
  59. or EXISTS (select mspr.music_sheet_id_ from music_sheet_purchase_record mspr
  60. left join album_music_relate amr on amr.album_id_ = mspr.music_sheet_id_
  61. where mspr.student_id_ = t.user_id_ and mspr.order_status_ = 'PAID' and mspr.purchase_type_ = 'ALBUM' and amr.music_sheet_id_ = ms.id_ and mspr.client_type_ = 'TEACHER' )
  62. or (ms.payment_type_ like '%VIP%' and EXISTS(select 1 from teacher t1 where t1.user_id_ = t.user_id_ and t1.membership_end_time_ > now()))
  63. )
  64. </if>
  65. </where>
  66. </select>
  67. <select id="selectPayMusic" resultType="java.lang.Long">
  68. select cc.id_ from course_courseware cc
  69. where
  70. (EXISTS (select * from music_sheet_purchase_record mspr
  71. where mspr.music_sheet_id_ = cc.music_sheet_id_
  72. and mspr.student_id_ = cc.user_id_
  73. and mspr.order_status_ = 'PAID'
  74. and mspr.purchase_type_ = 'MUSIC'
  75. and mspr.client_type_ = 'TEACHER')
  76. or EXISTS (select mspr.music_sheet_id_ from music_sheet_purchase_record mspr
  77. left join album_music_relate amr on amr.album_id_ = mspr.music_sheet_id_
  78. where mspr.student_id_ = cc.user_id_
  79. and mspr.order_status_ = 'PAID'
  80. and mspr.purchase_type_ = 'ALBUM'
  81. and amr.music_sheet_id_ = cc.music_sheet_id_
  82. and mspr.client_type_ = 'TEACHER'))
  83. <if test="coursewareIdList != null and coursewareIdList.size() != 0">
  84. and cc.id_ in
  85. <foreach collection="coursewareIdList" separator="," item="item" open="(" close=")">
  86. #{item}
  87. </foreach>
  88. </if>
  89. </select>
  90. </mapper>