src/main/kotlin/cn/flightfeather/supervision/timingtask/BaseTimingTask.kt
@@ -19,7 +19,7 @@ // 任务执行周期,单位:分钟 abstract val period: Long fun execute(localtime:LocalDateTime) { open fun execute(localtime:LocalDateTime) { val now = LocalDateTime.now() if (now.minusSeconds(period * 60 - 5) >= lastTime) { lastTime = now