|
@@ -235,7 +235,7 @@ public class WebMediatorImpl implements ViewMediator {
|
|
|
// return null;
|
|
|
// }).filter(Objects::nonNull).collect(Collectors.toList());
|
|
|
List<UserVO> userVOS = userTaskCountDao.findByType(RoleType.EVALUATION_USER.getId())
|
|
|
- .stream().sorted(Comparator.comparing(UserTaskCountPO::getCount)).collect(Collectors.toList())
|
|
|
+ .stream().sorted(Comparator.comparing(UserTaskCountPO::getCount).reversed()).collect(Collectors.toList())
|
|
|
.stream().map(userTaskCountPO -> {
|
|
|
User user = userRepo.getByIDJustInfo(userTaskCountPO.getUserId());
|
|
|
UserVO userVO = new UserVO(user);
|