| | |
| | | package com.ruoyi.inspect.controller; |
| | | |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | |
| | | @GetMapping("/listByStartTime") |
| | | public TableDataInfo listByStartTime(ArdVideoInspectRecord ardVideoInspectRecord) { |
| | | startPage(); |
| | | List list = ardVideoInspectRecordService.selectArdVideoInspectRecordListByStartTime(ardVideoInspectRecord); |
| | | List<HashMap> list = ardVideoInspectRecordService.selectArdVideoInspectRecordListByStartTime(ardVideoInspectRecord); |
| | | return getDataTable(list); |
| | | } |
| | | |