From 1ecc960b64081fd162421b6d74391b8df4631554 Mon Sep 17 00:00:00 2001
From: zhanghua <314079846@qq.com>
Date: 星期一, 01 四月 2024 11:23:43 +0800
Subject: [PATCH] bug修改
---
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