From 3794effa1e9e78e82e81253d6a6d54ad6db89b7e Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期六, 16 十二月 2023 17:07:07 +0800 Subject: [PATCH] 同步accoutId --- ycl-platform/src/main/java/com/ycl/controller/video/VideoInspectionController.java | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/ycl-platform/src/main/java/com/ycl/controller/video/VideoInspectionController.java b/ycl-platform/src/main/java/com/ycl/controller/video/VideoInspectionController.java index eb8132a..afd6672 100644 --- a/ycl-platform/src/main/java/com/ycl/controller/video/VideoInspectionController.java +++ b/ycl-platform/src/main/java/com/ycl/controller/video/VideoInspectionController.java @@ -31,9 +31,10 @@ @GetMapping("page") public CommonResult page(@RequestParam(value = "size", required = false) Long size, @RequestParam(value = "current", required = false) Long current, + @RequestParam(value = "type", required = false) Integer type, @RequestParam(value = "regionId", required = false) Integer streetId, @RequestParam(value = "regionId", required = false) Integer communityId) { - Page<VideoPointVo> list = videoInspectionService.page(size, current, streetId, communityId); + Page<VideoPointVo> list = videoInspectionService.page(size, current, streetId, communityId, type); return CommonResult.success(CommonPage.restPage(list)); } -- Gitblit v1.8.0