From e9582af916d019c4695b0aaf9665039be1bd6ea1 Mon Sep 17 00:00:00 2001 From: aijinhui <aijinhui> Date: 星期日, 14 一月 2024 14:43:50 +0800 Subject: [PATCH] 开关锁 --- ard-work/src/main/java/com/ruoyi/inspect/controller/ArdVideoInspectRecordController.java | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/ard-work/src/main/java/com/ruoyi/inspect/controller/ArdVideoInspectRecordController.java b/ard-work/src/main/java/com/ruoyi/inspect/controller/ArdVideoInspectRecordController.java index fbd225b..e4c4d8e 100644 --- a/ard-work/src/main/java/com/ruoyi/inspect/controller/ArdVideoInspectRecordController.java +++ b/ard-work/src/main/java/com/ruoyi/inspect/controller/ArdVideoInspectRecordController.java @@ -1,5 +1,6 @@ package com.ruoyi.inspect.controller; +import java.util.HashMap; import java.util.List; import javax.servlet.http.HttpServletResponse; @@ -42,10 +43,17 @@ @GetMapping("/listByStartTime") public TableDataInfo listByStartTime(ArdVideoInspectRecord ardVideoInspectRecord) { startPage(); - List list = ardVideoInspectRecordService.selectArdVideoInspectRecordListByStartTime(ardVideoInspectRecord); + List<HashMap> list = ardVideoInspectRecordService.selectArdVideoInspectRecordListByStartTime(ardVideoInspectRecord); return getDataTable(list); } + //涓嶆牎楠屾潈闄� + @GetMapping("/listByStartTime/noPerm") + public TableDataInfo listByStartTimeNoPerm(ArdVideoInspectRecord ardVideoInspectRecord) { + startPage(); + List<HashMap> list = ardVideoInspectRecordService.selectArdVideoInspectRecordListByStartTime(ardVideoInspectRecord); + return getDataTable(list); + } @PreAuthorize("@ss.hasPermi('inspect:record:list')") @GetMapping("/getFileCountByStartMonth") public List getFileCountByStartMonth(@RequestParam("startMonth") String startMonth) { -- Gitblit v1.9.3