| | |
| | | @PutMapping |
| | | @ApiOperation(value = "修改", notes = "修改") |
| | | public Result update(@RequestBody @Validated(Update.class) WxVideoForm form) { |
| | | return videoService.update(form); |
| | | return videoService.updatePublish(form); |
| | | } |
| | | |
| | | @DeleteMapping("/{id}") |
| | |
| | | return videoService.removeById(id); |
| | | } |
| | | |
| | | @PostMapping("/down/{id}") |
| | | @ApiOperation(value = "用户下架视频", notes = "用户下架视频") |
| | | public Result downVideo(@PathVariable("id") String id) { |
| | | return videoService.buyerDownVideo(id); |
| | | } |
| | | |
| | | @DeleteMapping("/batch") |
| | | @ApiOperation(value = "批量删除", notes = "批量删除") |
| | | public Result remove(@RequestBody @NotEmpty(message = "请选择数据") List<String> ids) { |