Update ArticleMapper.xml

过滤划水贴
This commit is contained in:
caterpillar 2020-09-25 11:12:35 +08:00 committed by GitHub
parent 8a89873844
commit 85044aae24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,8 +87,7 @@
select art.*,su.nickname,su.avatar_url from vertical_article art join vertical_user su on art.article_author_id = su.id select art.*,su.nickname,su.avatar_url from vertical_article art join vertical_user su on art.article_author_id = su.id
where article_status = '0' where article_status = '0'
<if test="topicUri != 'news'"> <if test="topicUri != 'news'">
and not exists (select * from vertical_tag_article vta where vta.id_article = art.id and FIND_IN_SET("划水",art.article_tags) = 0
and exists (select * from vertical_tag vt where vta.id_tag = vt.id and vt.tag_title = '划水'))
</if> </if>
order by updated_time desc order by updated_time desc
</select> </select>
@ -134,4 +133,4 @@
<select id="existsCommentWithPrimaryKey" resultType="java.lang.Boolean"> <select id="existsCommentWithPrimaryKey" resultType="java.lang.Boolean">
select exists (select * from vertical_comment where comment_article_id = #{id}) select exists (select * from vertical_comment where comment_article_id = #{id})
</select> </select>
</mapper> </mapper>