From cfed607d085002b737ff54992ebd469954362ab3 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期四, 26 一月 2023 01:19:02 +0800
Subject: [PATCH] 加入业主入驻申请功能
---
java110-db/src/main/resources/mapper/user/DataPrivilegeStaffV1ServiceDaoImplMapper.xml | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/user/DataPrivilegeStaffV1ServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/user/DataPrivilegeStaffV1ServiceDaoImplMapper.xml
index ae60660..ac4ebdb 100644
--- a/java110-db/src/main/resources/mapper/user/DataPrivilegeStaffV1ServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/user/DataPrivilegeStaffV1ServiceDaoImplMapper.xml
@@ -19,8 +19,9 @@
<select id="getDataPrivilegeStaffInfo" parameterType="Map" resultType="Map">
select t.dps_id,t.dps_id dpsId,t.dp_id,t.dp_id dpId,t.staff_name,t.staff_name
staffName,t.remark,t.status_cd,t.status_cd statusCd,t.community_id,t.community_id
- communityId,t.staff_id,t.staff_id staffId
+ communityId,t.staff_id,t.staff_id staffId,u.tel,u.email,u.address,u.sex
from data_privilege_staff t
+ left join u_user u on t.staff_id = u.user_id and u.status_cd = '0'
where 1 =1
<if test="dpsId !=null and dpsId != ''">
and t.dps_id= #{dpsId}
--
Gitblit v1.8.0