| | |
| | | return returnData(R.SUCCESS.getCode(), filmLocationService.queryPage(dto, page)); |
| | | } |
| | | |
| | | @GetMapping("/filmLocation/getTop3") |
| | | @ApiOperation(value = "影视拍摄场地前三", httpMethod = "GET") |
| | | public ResponseEntity<ReturnDataDTO<List<FilmLocationVO>>> getFilmLocationListTop3() { |
| | | return returnData(R.SUCCESS.getCode(), filmLocationService.getFilmLocationListTop3()); |
| | | } |
| | | |
| | | |
| | | @GetMapping(value = "/filmLocation/delete") |
| | | @ApiOperation(value = "删除影视拍摄场地 ", httpMethod = "GET", notes = "ID") |
| | | public ResponseEntity delete(@NotNull(message = "id不能为空") Long id) { |