| | |
| | | /** |
| | | * 删除节目 |
| | | * |
| | | * @param pid |
| | | * @param |
| | | * @return |
| | | */ |
| | | @PostMapping("/deleteProgram/{pid}") |
| | | public ResponseVO<Object> deleteProgram(@PathVariable Long pid) { |
| | | @PostMapping("/deleteProgram") |
| | | public ResponseVO<Object> deleteProgram(@RequestBody List<Long> pids) { |
| | | if (!permissionConfig.check(MenuEnum.XIXUN_PROGRAM_DELETE.getCode())) { |
| | | return ResponseUtil.fail("缺少对应用户权限"); |
| | | } |
| | | return ResponseUtil.success(xiXunPlayerService.deleteProgram(pid)); |
| | | return ResponseUtil.success(xiXunPlayerService.deleteProgram(pids)); |
| | | } |
| | | |
| | | /** |