mirror of
https://github.com/weizhiqiang1995/erp-pro.git
synced 2025-01-08 00:07:47 +08:00
获取部门用户信息修改
This commit is contained in:
parent
53291726d7
commit
6a513b1f19
1 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
|||
|
||||
package com.skyeye.eve.service.impl;
|
||||
|
||||
import cn.hutool.core.collection.CollectionUtil;
|
||||
import cn.hutool.json.JSONUtil;
|
||||
import com.skyeye.common.constans.Constants;
|
||||
import com.skyeye.common.object.InputObject;
|
||||
|
@ -72,7 +73,7 @@ public class CompanyChatServiceImpl implements CompanyChatService {
|
|||
} else {
|
||||
userList = JSONUtil.toList(jedisService.get(Constants.getSysTalkGroupUserListMationById(depart.get("id").toString() + "_" + userId)), null);
|
||||
}
|
||||
if (userList != null && !userList.isEmpty()) {
|
||||
if (CollectionUtil.isNotEmpty(userList)) {
|
||||
Set<String> uId = TalkWebSocket.getOnlineUserId();
|
||||
for (Map<String, Object> u : userList) {
|
||||
if (uId.contains(u.get("id").toString())) {
|
||||
|
|
Loading…
Reference in a new issue