首页消息

This commit is contained in:
2026-01-06 17:01:35 +08:00
parent 1b31780136
commit 26742060e6
17 changed files with 403 additions and 13 deletions

View File

@@ -420,6 +420,8 @@ public class SysStaffServiceImpl extends ServiceImpl<SysStaffMapper, SysStaffEnt
R<List<Long>> userIdListByNickNameLike = honeycomUserServiceFeign.getUserIdListByNickNameLike(sysStaffQueryDTO.getNickname(), SecurityConstants.FROM_IN);;
if (CollectionUtils.isNotEmpty(userIdListByNickNameLike.getData())) {
queryWrapper.in(SysStaffEntity::getUserId, userIdListByNickNameLike.getData());
} else {
queryWrapper.in(SysStaffEntity::getUserId, -1L);
}
}