修改用户查询

This commit is contained in:
hzj
2023-12-27 14:40:38 +08:00
parent d26cb9e1ce
commit 14cb85409c
5 changed files with 5 additions and 5 deletions

View File

@@ -134,7 +134,7 @@ public class CsFeedbackServiceImpl extends ServiceImpl<CsFeedbackMapper, CsFeedb
List<String> collect1 = list1.stream().map(CsFeedbackChatPO::getUserId).distinct().collect(Collectors.toList());
Map<String, String> collect2;
if(!CollectionUtils.isEmpty(collect1)){
List<User> userTem = userFeignClient.getUserByIdList(collect1).getData();
List<User> userTem = userFeignClient.appuserByIdList(collect1).getData();
collect2 = userTem.stream().collect(Collectors.toMap(User::getId, User::getName, (e1, e2) -> e1 + "," + e2));
} else {