From 566e7986291e73051d30ee252b0ebf852b1577a7 Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Tue, 02 Apr 2024 14:25:51 +0800
Subject: [PATCH] 娱乐场所标签新增180200
---
src/main/java/org/springblade/modules/system/mapper/UserMapper.xml | 40 ----------------------------------------
1 files changed, 0 insertions(+), 40 deletions(-)
diff --git a/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml b/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
index 36e57d5..efcb04d 100644
--- a/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
+++ b/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
@@ -233,47 +233,7 @@
)
</select>
- <select id="getUserInfoByDistrictIds" resultType="org.springblade.modules.house.vo.HouseholdVO">
- SELECT
- jh.building,
- jh.unit,
- bu.id userId,
- bu.tenant_id,
- bu.code,
- bu.user_type,
- bu.account,
- bu.name,
- bu.real_name,
- bu.avatar,
- bu.email,
- bu.phone,
- bu.birthday,
- jhe.building,
- jhe.unit
- FROM
- blade_user bu
- LEFT JOIN jczz_household jh ON bu.id = jh.associated_user_id and jh.is_deleted=0
- LEFT JOIN jczz_house jhe ON jhe.house_code = jh.house_code
- LEFT JOIN jczz_district jd on jd.aoi_code=jhe.district_code
- <where>
- and jd.id in
- <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
- #{item}
- </foreach>
- and bu.is_deleted = 0
- and jh.relationship !=18
- <if test="param2 != null and param2 !=''">
- and jhe.building like concat('%',#{param2},'%')
- </if>
- <if test="param3 != null and param3 !=''">
- and jhe.unit like concat('%',#{param3},'%')
- </if>
- <if test="param4 != null and param4 !=''">
- and jh.name like concat('%',#{param4},'%')
- </if>
- </where>
- </select>
<select id="selectUserByDept" resultMap="userResultMap">
--
Gitblit v1.9.3