From bb81166c8d0818c9211c334ed7b67d5f1166b81a Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期二, 09 一月 2024 10:47:16 +0800
Subject: [PATCH] 看板数据修改

---
 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