|
@@ -102,5 +102,11 @@ public class PerformanceApplyController extends BaseController {
|
|
|
public Map<String, String> getAuth(Long id, String phone) {
|
|
public Map<String, String> getAuth(Long id, String phone) {
|
|
|
return performanceApplyService.getAuth(id, phone);
|
|
return performanceApplyService.getAuth(id, phone);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ @ApiOperation("获取当前节目后续列表")
|
|
|
|
|
+ @PostMapping("/related")
|
|
|
|
|
+ public List<PerformanceApply> related(Long id) {
|
|
|
|
|
+ return performanceApplyService.related(id);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|