From b7e9ab8bcf9951273328e838948197afe8490bce Mon Sep 17 00:00:00 2001 From: renzhiyuan <465386466@qq.com> Date: Mon, 12 Jan 2026 11:43:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4=E6=8A=A5=E8=A1=A8?= =?UTF-8?q?=E6=8E=A8=E9=80=81=E4=BB=BB=E5=8A=A1=E6=89=A7=E8=A1=8C=E6=97=B6?= =?UTF-8?q?=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/server/cron.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/server/cron.go b/internal/server/cron.go index 4760826..0bbdb6e 100644 --- a/internal/server/cron.go +++ b/internal/server/cron.go @@ -42,12 +42,12 @@ func (c *CronServer) InitJobs(ctx context.Context) { { Func: c.cronService.CronReportSendDingTalk, Name: "直连天下报表推送", - Schedule: "0 12,18,23 * * *", + Schedule: "20 12,18,23 * * *", }, { Func: c.cronService.CronReportSendQywx, Name: "直连天下报表推送", - Schedule: "0 12,18,23 * * *", + Schedule: "20 12,18,23 * * *", }, } }