|
@@ -192,8 +192,10 @@ public class MeetingRoomServiceImpl extends AbstractCrudService<MeetingRoomMappe
|
|
|
map.put("userName", userName);
|
|
|
List<MeetingAttendee> list = meetingAttendeeRepository.findMeetingAttendeeList(meetingId, userId, tenantId);
|
|
|
if (org.springframework.util.CollectionUtils.isEmpty(list)) {
|
|
|
+ map.put("status","0");
|
|
|
map.put("msg", "您当前没有需要参加的会议");
|
|
|
} else {
|
|
|
+ map.put("status","1");
|
|
|
map.put("msg", "验证成功");
|
|
|
}
|
|
|
return map;
|