|
@@ -33,9 +33,9 @@ public class ConferenceConfController {
|
|
|
return conferenceConfService.listByCid(id);
|
|
|
}
|
|
|
|
|
|
- @GetMapping("list-type/{id}/{type}")
|
|
|
- public List<ConferenceConf> listByType(@PathVariable("id") Long id, @PathVariable("type") Integer type){
|
|
|
- return conferenceConfService.listByCid(id);
|
|
|
+ @GetMapping("type/{type}/{id}")
|
|
|
+ public List<ConferenceConf> listByType(@PathVariable("id") Long id, @PathVariable("type") String type){
|
|
|
+ return conferenceConfService.listByType(id, type);
|
|
|
}
|
|
|
|
|
|
|