From b70d862fdb47a8aa307b96901b3b07cfdcfe8b41 Mon Sep 17 00:00:00 2001
From: chengf <2156125618@qq.com>
Date: 星期四, 10 七月 2025 17:36:13 +0800
Subject: [PATCH] 修复房产删除SQL、小程序端不显示小区地址、sql时区异常2025/07/09

---
 java110-db/src/main/resources/mapper/user/StaffCommunityV1ServiceDaoImplMapper.xml |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/user/StaffCommunityV1ServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/user/StaffCommunityV1ServiceDaoImplMapper.xml
index 9a815bb..231f771 100644
--- a/java110-db/src/main/resources/mapper/user/StaffCommunityV1ServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/user/StaffCommunityV1ServiceDaoImplMapper.xml
@@ -18,8 +18,9 @@
     <!-- 鏌ヨ鍛樺伐灏忓尯淇℃伅 add by wuxw 2018-07-03 -->
     <select id="getStaffCommunityInfo" parameterType="Map" resultType="Map">
         select t.staff_name staffName,t.community_name communityName,t.store_name storeName,t.status_cd
-        statusCd,t.community_id communityId,t.store_id storeId,t.sc_id scId,t.staff_id staffId,t.create_time createTime
+        statusCd,t.community_id communityId,t.store_id storeId,t.sc_id scId,t.staff_id staffId,t.create_time createTime,sc.address
         from staff_community t
+        left join s_community sc on sc.community_id = t.community_id
         where 1 =1
         <if test="staffName !=null and staffName != ''">
             and t.staff_name= #{staffName}

--
Gitblit v1.8.0