修改用户查询

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

@@ -126,7 +126,7 @@ public class CsConfigurationServiceImpl extends ServiceImpl<CsConfigurationMappe
List<String> collect1 = csConfigurationPOPage.getRecords().stream().map(CsConfigurationPO::getCreateBy).collect(Collectors.toList());
Map<String, String> collect2;
if(!CollectionUtils.isEmpty(collect1)){
List<User> data = userFeignClient.getUserByIdList(collect1).getData();
List<User> data = userFeignClient.appuserByIdList(collect1).getData();
collect2 = data.stream().collect(Collectors.toMap(User::getId, User::getName, (e1, e2) -> e1 + "," + e2));
} else {