|
@@ -48,7 +48,7 @@
|
|
|
and (t.id_ like concat('%',#{query.idAndName},'%') or
|
|
|
t.album_name_ like concat('%',#{query.idAndName},'%'))
|
|
|
</if>
|
|
|
- <if test="query.albumTagIdList != null and query.albumTagIdList != ''">
|
|
|
+ <if test="query.albumTagIdList != null and query.albumTagIdList.size() != 0">
|
|
|
and
|
|
|
<foreach collection="query.albumTagIdList" separator="and" item="item">
|
|
|
find_in_set(#{item},t.album_tag_)
|
|
@@ -88,7 +88,7 @@
|
|
|
and (t.id_ like concat('%',#{query.idAndName},'%') or
|
|
|
t.album_name_ like concat('%',#{query.idAndName},'%'))
|
|
|
</if>
|
|
|
- <if test="query.albumTagIdList != null and query.albumTagIdList != ''">
|
|
|
+ <if test="query.albumTagIdList != null and query.albumTagIdList.size() != 0">
|
|
|
and
|
|
|
<foreach collection="query.albumTagIdList" separator="and" item="item">
|
|
|
find_in_set(#{item},t.album_tag_)
|