diff --git a/esua-epdc/epdc-module/epdc-party-group/epdc-party-group-server/src/main/resources/mapper/PartyUserGroupDao.xml b/esua-epdc/epdc-module/epdc-party-group/epdc-party-group-server/src/main/resources/mapper/PartyUserGroupDao.xml
index 6fa2a4fe..e3e8d24a 100644
--- a/esua-epdc/epdc-module/epdc-party-group/epdc-party-group-server/src/main/resources/mapper/PartyUserGroupDao.xml
+++ b/esua-epdc/epdc-module/epdc-party-group/epdc-party-group-server/src/main/resources/mapper/PartyUserGroupDao.xml
@@ -94,6 +94,7 @@
UPDATED_BY,
UPDATED_TIME,
GRID,
+ ALL_DEPT_IDS,
((case when bannedTime = 0
then '未禁言'
when bannedTime = 1
@@ -124,11 +125,21 @@
CREATED_TIME,
UPDATED_BY,
UPDATED_TIME,
+ ALL_DEPT_IDS,
GRID,DATEDIFF(BANNED_END_TIME,BANNED_START_TIME) as bannedTime from epdc_party_user_group)a
where DEL_FLAG='0'
and PARTY_GROUP_ID = #{partyGroupId}
+
+ and MOBILE like concat('%',#{mobile},'%')
+
+
+ and NICKNAME like concat('%',#{nickname},'%')
+
+
+ and find_in_set(#{gridId},ALL_DEPT_IDS)
+
order by CREATED_TIME desc
\ No newline at end of file