This commit is contained in:
2025-09-16 17:22:43 +08:00
parent 6932bb4fa9
commit bfada06cfe

View File

@@ -212,7 +212,7 @@ public class MeetBookingServiceImpl implements IMeetBookingService {
}
if (CollUtil.isNotEmpty(remoteUserVos)) {
ResidentPersonVo residentPersonVo = remoteUserVos.stream()
.filter(vo -> vo.getUserId() != null && String.valueOf(vo.getUserId()).equals(s.getPerson())).findFirst().orElse(null);
.filter(vo -> vo.getId() != null && String.valueOf(vo.getId()).equals(s.getPerson())).findFirst().orElse(null);
s.setPersonName(ObjectUtil.isNotEmpty(residentPersonVo) ? residentPersonVo.getUserName() : null);
}
String str = df.format(s.getScheduledStarttime());