| | |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | @GetMapping("/page") |
| | | @Operation(summary = "工控网目录文件列表", description = "工控网目录文件列表") |
| | | public R<IPage<FileMonitorRecord>> page(FileSendRecordQueryVO query) { |
| | | |
| | | Date end = null; |
| | | LocalDate end = null; |
| | | if(query.getCreateTimeEnd() != null) { |
| | | end = DateUtil.plusDays(query.getCreateTimeEnd(),1); |
| | | end = query.getCreateTimeEnd().plusDays(1); |
| | | } |
| | | |
| | | IPage<FileMonitorRecord> page = fileMonitorRecordService.lambdaQuery() |