|
|
|
|
54
|
public R contact(@PathVariable("id") Long id) {
|
54
|
public R contact(@PathVariable("id") Long id) {
|
55
|
MeetingEntity meeting = meetingService.getById(id);
|
55
|
MeetingEntity meeting = meetingService.getById(id);
|
56
|
String contactIds = meeting.getContactIds();
|
56
|
String contactIds = meeting.getContactIds();
|
|
|
57
|
if(contactIds == null) {
|
|
|
58
|
return R.ok().put("list", null);
|
|
|
59
|
}
|
57
|
|
60
|
|
58
|
List<Map<String, Object>> list = employeeService.getContact(contactIds);
|
61
|
List<Map<String, Object>> list = employeeService.getContact(contactIds);
|
59
|
return R.ok().put("list", list);
|
62
|
return R.ok().put("list", list);
|