yangys
2025-09-06 61763cc1a182effa7e5535ac72d54a6a56f029eb
blade-service/blade-mdm/src/main/java/org/springblade/mdm/machinefile/controller/FileMonitorRecordController.java
@@ -21,6 +21,7 @@
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.time.LocalDate;
import java.util.Date;
/**
@@ -42,10 +43,9 @@
   @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()