From ca93fe7eb03bec91d5cb9f45ebb3b6c98819b7ff Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Mon, 25 Dec 2023 18:01:09 +0800
Subject: [PATCH] 我的任务,里面审核搜索加上时间条件
---
src/main/java/org/springblade/modules/district/mapper/DistrictMapper.xml | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/src/main/java/org/springblade/modules/district/mapper/DistrictMapper.xml b/src/main/java/org/springblade/modules/district/mapper/DistrictMapper.xml
index a08c6f3..bb36abc 100644
--- a/src/main/java/org/springblade/modules/district/mapper/DistrictMapper.xml
+++ b/src/main/java/org/springblade/modules/district/mapper/DistrictMapper.xml
@@ -30,8 +30,14 @@
<if test="district.name !=null and district.name !=''">
and jd.name like concat('%',#{district.name},'%')
</if>
+ <if test="district.communityName !=null and district.communityName !=''">
+ and br.village_name like concat('%', #{district.communityName},'%')
+ </if>
<if test="district.communityCode !=null and district.communityCode !=''">
and jd.community_code = #{district.communityCode}
+ </if>
+ <if test="district.townStreetName !=null and district.townStreetName !=''">
+ and br.town_name like concat('%',#{district.townStreetName},'%')
</if>
</select>
@@ -45,11 +51,17 @@
union all
(
select
- id,
+ aoi_code as id,
community_code as parentId,
name
from jczz_district
where is_deleted = 0
+ <if test="district.districtIdList!=null and district.districtIdList!=''">
+ and id in
+ <foreach collection="district.districtIdList" item="item" separator ="," open="(" close=")">
+ #{item}
+ </foreach>
+ </if>
)
</select>
--
Gitblit v1.9.3