From 0185fb8ca2086e80d54dbfabe399b6af684368d9 Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Tue, 02 Jan 2024 20:25:19 +0800
Subject: [PATCH] 楼盘表新增住户标签
---
src/main/java/org/springblade/modules/article/mapper/ArticleMapper.xml | 21 ++++++++++++++++++---
1 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/springblade/modules/article/mapper/ArticleMapper.xml b/src/main/java/org/springblade/modules/article/mapper/ArticleMapper.xml
index 5f37093..1e5ce94 100644
--- a/src/main/java/org/springblade/modules/article/mapper/ArticleMapper.xml
+++ b/src/main/java/org/springblade/modules/article/mapper/ArticleMapper.xml
@@ -87,9 +87,7 @@
ja.update_user,
ja.create_user,
ja.is_deleted,
- jpd.id pdId,
- (select bdb.dict_value from blade_dict_biz bdb where bdb.parent_id='1722966265111248897' and ja.article_type = bdb.dict_key) dictValue,
- jpd.event_type
+ jpd.id pdId
from jczz_article ja
LEFT JOIN jczz_public_discuss jpd on jpd.article_id=ja.id
where ja.is_deleted = 0
@@ -99,6 +97,14 @@
</if>
<if test="article.eventType != null">
and jpd.event_type = #{article.eventType}
+ </if>
+
+ <if test="article.type != null">
+ and ja.type = #{article.type}
+ </if>
+
+ <if test="article.type == null">
+ and ja.type = 0
</if>
<if test="article.districtId != null and article.districtId != ''">
@@ -132,6 +138,14 @@
and ja.publish = 1
<if test="article.articleType != null and article.articleType != ''">
and ja.article_type = #{article.articleType}
+ </if>
+
+ <if test="article.type != null">
+ and ja.type = #{article.type}
+ </if>
+
+ <if test="article.type == null">
+ and ja.type = 0
</if>
<if test="article.districtId != null and article.districtId != ''">
@@ -169,6 +183,7 @@
AND CONCAT(title,source_name)
LIKE CONCAT ('%', #{article.keyword},'%')
</if>
+ <if test="article.type != null ">and type = #{article.type}</if>
and is_deleted = 0
order by id desc
--
Gitblit v1.9.3