|
@@ -40,4 +40,9 @@ public class ConferenceNewsController {
|
|
|
return conferenceNewsService.newsPage(id, page, size);
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("info/{id}")
|
|
|
+ public ConferenceNews info(@PathVariable("id") Long id) {
|
|
|
+ return conferenceNewsService.getById(id);
|
|
|
+ }
|
|
|
+
|
|
|
}
|