|
@@ -35,4 +35,9 @@ public class ConferenceGuestController {
|
|
|
return conferenceGuestService.listByType(id, type);
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("info/{id}")
|
|
|
+ public ConferenceGuest info(@PathVariable("id") Long id) {
|
|
|
+ return conferenceGuestService.getById(id);
|
|
|
+ }
|
|
|
+
|
|
|
}
|