mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-28 12:59:03 +08:00
(improvement)(Headless) fix tag list filter by status (#869)
Co-authored-by: jolunoluo
This commit is contained in:
@@ -143,12 +143,8 @@
|
||||
<if test="sensitiveLevel != null">
|
||||
and t.sensitive_level = #{sensitiveLevel}
|
||||
</if>
|
||||
<if test="status != null and status.size >0">
|
||||
and t.status in
|
||||
<foreach collection="status" index="index" item="status" open="(" close=")"
|
||||
separator=",">
|
||||
#{status}
|
||||
</foreach>
|
||||
<if test="status != null">
|
||||
and t.status = #{status}
|
||||
</if>
|
||||
<if test="modelIds != null and modelIds.size >0">
|
||||
and t.model_id in
|
||||
|
||||
@@ -150,12 +150,8 @@
|
||||
<if test="sensitiveLevel != null">
|
||||
and t.sensitive_level = #{sensitiveLevel}
|
||||
</if>
|
||||
<if test="status != null and status.size >0">
|
||||
and t.status in
|
||||
<foreach collection="status" index="index" item="status" open="(" close=")"
|
||||
separator=",">
|
||||
#{status}
|
||||
</foreach>
|
||||
<if test="status != null">
|
||||
and t.status = #{status}
|
||||
</if>
|
||||
<if test="modelIds != null and modelIds.size >0">
|
||||
and t.model_id in
|
||||
|
||||
Reference in New Issue
Block a user