‘liusuyi’
2024-02-29 133098a6f81de1de99cb0a5c829b7d1b39105e84
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) {