|
@@ -1347,121 +1347,138 @@
|
|
|
|
|
|
<select id="cloudPage" resultType="com.yonge.cooleshow.biz.dal.wrapper.MusicSheetWrapper$MusicSheetCloud">
|
|
|
select t.id_, t.music_sheet_name_,t.title_img_,t.composer_,t.cbs_music_sheet_id_ ,t.payment_type_,t.music_price_ as musicPrice
|
|
|
- from music_sheet t
|
|
|
- <if test="param.recentFlag != null and param.recentFlag == 1">
|
|
|
- left join sys_music_compare_record msar on t.id_ = msar.music_sheet_id_
|
|
|
- </if>
|
|
|
- <if test="param.albumId != null and param.providerType.code == 'TENANT'">
|
|
|
- left join tenant_album_music tam on t.id_ = tam.music_sheet_id_ and tam.del_flag_ = 0 and tam.tenant_album_id_ = #{param.albumId}
|
|
|
- </if>
|
|
|
-
|
|
|
- <if test="param.albumId != null and param.providerType.code == 'PLATFORM'">
|
|
|
- left join album_music_relate amr on t.id_ = amr.music_sheet_id_ and amr.album_id_ = #{param.albumId}
|
|
|
- </if>
|
|
|
- <if test="param.favoriteFlag != null and param.favoriteFlag == 1">
|
|
|
- left join music_favorite mf on t.id_ = mf.music_sheet_id_ and mf.user_id_ = #{param.userId} and mf.client_type_ = #{param.clientType}
|
|
|
+ from (
|
|
|
+ select a.* from
|
|
|
+ music_sheet a
|
|
|
+ <if test="param.providerType != null and param.providerType.code == 'TENANT'">
|
|
|
+ left join tenant_album_music tam on a.id_ = tam.music_sheet_id_ and tam.del_flag_ = 0 and tam.tenant_album_id_ in
|
|
|
+ <foreach collection="param.tenantAlbumIds" item="item" open="(" close=")" separator=",">
|
|
|
+ #{item}
|
|
|
+ </foreach>
|
|
|
</if>
|
|
|
<where>
|
|
|
- t.cbs_music_sheet_id_ is not null
|
|
|
- <if test="param.name != null and param.name != ''">
|
|
|
- and t.music_sheet_name_ like concat('%',#{param.name},'%')
|
|
|
+ a.cbs_music_sheet_id_ is not null
|
|
|
+ <if test="param.providerType != null and param.providerType.code == 'TENANT'">
|
|
|
+ and tam.id_ is not null
|
|
|
</if>
|
|
|
- <if test="param.favoriteFlag != null and param.favoriteFlag == 1">
|
|
|
- and mf.id_ is not null
|
|
|
+ <if test="param.name != null and param.name != ''">
|
|
|
+ and a.music_sheet_name_ like concat('%',#{param.name},'%')
|
|
|
</if>
|
|
|
<if test="param.status != null">
|
|
|
|
|
|
<if test="param.providerType != null">
|
|
|
<if test="param.providerType.code == 'TENANT'">
|
|
|
- and t.tenant_state_ = #{param.status}
|
|
|
+ and a.tenant_state_ = #{param.status}
|
|
|
</if>
|
|
|
|
|
|
<if test="param.providerType.code == 'PLATFORM'">
|
|
|
- and t.state_ = #{param.status}
|
|
|
+ and a.state_ = #{param.status}
|
|
|
</if>
|
|
|
</if>
|
|
|
|
|
|
<if test="param.providerType == null">
|
|
|
- and t.state_ = #{param.status}
|
|
|
+ and a.state_ = #{param.status}
|
|
|
</if>
|
|
|
</if>
|
|
|
<if test="param.delFlag != null">
|
|
|
<if test="param.providerType != null">
|
|
|
<if test="param.providerType.code == 'TENANT'">
|
|
|
- and t.tenant_del_flag_ = #{param.delFlag}
|
|
|
+ and a.tenant_del_flag_ = #{param.delFlag}
|
|
|
</if>
|
|
|
|
|
|
<if test="param.providerType.code == 'PLATFORM'">
|
|
|
- and t.del_flag_ = #{param.delFlag}
|
|
|
+ and a.del_flag_ = #{param.delFlag}
|
|
|
</if>
|
|
|
</if>
|
|
|
|
|
|
<if test="param.providerType == null">
|
|
|
- and t.del_flag_ = #{param.delFlag}
|
|
|
+ and a.del_flag_ = #{param.delFlag}
|
|
|
</if>
|
|
|
|
|
|
</if>
|
|
|
<if test="param.versionFlag != null">
|
|
|
- and t.audit_version_ = #{param.versionFlag}
|
|
|
+ and a.audit_version_ = #{param.versionFlag}
|
|
|
</if>
|
|
|
|
|
|
<if test="param.mustMatchSubjectIds != null and param.mustMatchSubjectIds.size() != 0">
|
|
|
and
|
|
|
<foreach collection="param.mustMatchSubjectIds" separator="and" item="item" open="(" close=")">
|
|
|
- find_in_set(#{item},t.music_subject_)
|
|
|
+ find_in_set(#{item},a.music_subject_)
|
|
|
</foreach>
|
|
|
</if>
|
|
|
- <if test="param.recentFlag != null and param.recentFlag == 1">
|
|
|
- <if test="param.userId != null">
|
|
|
- and msar.user_id_ = #{param.userId}
|
|
|
- </if>
|
|
|
- <if test="param.clientType != null and param.clientType != ''">
|
|
|
- and msar.client_id_ = #{param.clientType}
|
|
|
- </if>
|
|
|
- </if>
|
|
|
<if test="param.excludeMusicId != null">
|
|
|
- and t.id_ != #{param.excludeMusicId}
|
|
|
+ and a.id_ != #{param.excludeMusicId}
|
|
|
</if>
|
|
|
<if test="param.ids != null and param.ids.size() != 0">
|
|
|
- and t.id_ in
|
|
|
+ and a.id_ in
|
|
|
<foreach collection="param.ids" item="item" open="(" close=")" separator=",">
|
|
|
#{item}
|
|
|
</foreach>
|
|
|
</if>
|
|
|
|
|
|
+
|
|
|
<if test="param.providerType != null and param.providerType.code == 'TENANT'">
|
|
|
<if test="param.albumId != null">
|
|
|
and tam.tenant_album_id_ = #{param.albumId}
|
|
|
and tam.subject_type_ in ('ENSEMBLE', 'MUSIC', 'SUBJECT')
|
|
|
</if>
|
|
|
- <if test="param.albumId == null">
|
|
|
+ <if test="param.albumId == null and param.recentFlag == null and param.favoriteFlag == null">
|
|
|
and 1=2
|
|
|
</if>
|
|
|
</if>
|
|
|
-
|
|
|
- <if test="param.providerType != null and param.providerType.code == 'PLATFORM'">
|
|
|
- <if test="param.albumId != null">
|
|
|
- and amr.id_ is not null
|
|
|
- </if>
|
|
|
-
|
|
|
- </if>
|
|
|
-
|
|
|
<if test="param.providerType != null">
|
|
|
- and find_in_set(#{param.providerType},t.provider_type_)
|
|
|
+ and find_in_set(#{param.providerType},a.provider_type_)
|
|
|
</if>
|
|
|
<if test="param.musicSheetType != null">
|
|
|
- and t.music_sheet_type_ = #{param.musicSheetType}
|
|
|
+ and a.music_sheet_type_ = #{param.musicSheetType}
|
|
|
</if>
|
|
|
<if test="param.subjectId != null">
|
|
|
- and (find_in_set(#{param.subjectId},t.music_subject_)or t.music_subject_ is null or t.music_subject_ = '' OR t.is_all_subject_)
|
|
|
+ and (find_in_set(#{param.subjectId},a.music_subject_)or a.music_subject_ is null or a.music_subject_ = '' OR a.is_all_subject_)
|
|
|
</if>
|
|
|
<if test="param.musicTagIdList != null and param.musicTagIdList.size() >0">
|
|
|
and
|
|
|
<foreach collection="param.musicTagIdList" open="(" close=")" separator="or" item="item">
|
|
|
- find_in_set(#{item},t.music_tag_)
|
|
|
+ find_in_set(#{item},a.music_tag_)
|
|
|
</foreach>
|
|
|
</if>
|
|
|
</where>
|
|
|
+ ) t
|
|
|
+ <if test="param.recentFlag != null and param.recentFlag == 1">
|
|
|
+ left join sys_music_compare_record msar on t.id_ = msar.music_sheet_id_ and t.provider_type_ = #{param.providerType}
|
|
|
+ </if>
|
|
|
+ <if test="param.albumId != null and param.providerType.code == 'TENANT'">
|
|
|
+ left join tenant_album_music tam on t.id_ = tam.music_sheet_id_ and tam.del_flag_ = 0 and tam.tenant_album_id_ = #{param.albumId}
|
|
|
+ </if>
|
|
|
+
|
|
|
+ <if test="param.albumId != null and param.providerType.code == 'PLATFORM'">
|
|
|
+ left join album_music_relate amr on t.id_ = amr.music_sheet_id_ and amr.album_id_ = #{param.albumId}
|
|
|
+ </if>
|
|
|
+ <if test="param.favoriteFlag != null and param.favoriteFlag == 1">
|
|
|
+ left join music_favorite mf on t.id_ = mf.music_sheet_id_ and mf.user_id_ = #{param.userId} and mf.client_type_ = #{param.clientType} and t.provider_type_ = #{param.providerType}
|
|
|
+ </if>
|
|
|
+ <where>
|
|
|
+
|
|
|
+ <if test="param.favoriteFlag != null and param.favoriteFlag == 1">
|
|
|
+ and mf.id_ is not null
|
|
|
+ </if>
|
|
|
+
|
|
|
+ <if test="param.recentFlag != null and param.recentFlag == 1">
|
|
|
+ <if test="param.userId != null">
|
|
|
+ and msar.user_id_ = #{param.userId}
|
|
|
+ </if>
|
|
|
+ <if test="param.clientType != null and param.clientType != ''">
|
|
|
+ and msar.client_id_ = #{param.clientType}
|
|
|
+ </if>
|
|
|
+ </if>
|
|
|
+
|
|
|
+ <if test="param.providerType != null and param.providerType.code == 'PLATFORM'">
|
|
|
+ <if test="param.albumId != null">
|
|
|
+ and amr.id_ is not null
|
|
|
+ </if>
|
|
|
+
|
|
|
+ </if>
|
|
|
+
|
|
|
+ </where>
|
|
|
|
|
|
GROUP BY t.id_
|
|
|
order by
|