更改发送飞书id

This commit is contained in:
xiaodong.hu
2023-10-27 19:12:23 +08:00
parent 5e3672a674
commit 0d99364862

View File

@@ -111,7 +111,7 @@ public class EcSyncServiceImpl implements EcSyncService {
Map<String, String> feishuUserIdsByUserIds = enterpriseUserDAO.getFeishuUserIdsByUserIds(new ArrayList<String>() {{
add(k);
}});
List<String> feishuIds = feishuUserIdsByUserIds.entrySet().stream().map(Map.Entry::getKey).collect(Collectors.toList());
List<String> feishuIds = feishuUserIdsByUserIds.entrySet().stream().map(Map.Entry::getValue).collect(Collectors.toList());
try {
eventCenterHttpRequest.sendFeiShuNotice(FeiShuNoticeMsgEnum.EC_RECEIVE_LINE,feishuIds,v.size(),str);
} catch (ApiException e) {