@@ -100,6 +100,7 @@ public class UserManagementFacade {
.map(i -> i.getRoleId())
.collect(Collectors.toList());
BeanUtils.copyProperties(user, userDTO);
+ userDTO.setStatus(Integer.parseInt(user.getStatus()));
return userDTO;
}