From 32f819845b825c6078c7c5ea50eb03d5ccd91488 Mon Sep 17 00:00:00 2001 From: chenlin Date: Wed, 11 Dec 2024 09:54:37 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E8=87=AA=E5=8A=A8=E5=AE=A1=E6=A0=B8?= =?UTF-8?q?=E4=BF=9D=E8=AF=81=E9=87=91=E6=97=B6=E9=97=B4=E7=94=B19?= =?UTF-8?q?=E7=82=B930=E6=94=B9=E4=B8=BA10=E7=82=B9=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmd/api/server.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/api/server.go b/cmd/api/server.go index 5c6007d..7625989 100644 --- a/cmd/api/server.go +++ b/cmd/api/server.go @@ -189,8 +189,8 @@ func run() error { fmt.Println("err:", err) } - // 每天早上9点30分退前一天的保证金 - err = s.Every(1).Day().At("09:30").Do(usermanage.AutoDepositRefund) + // 每天上午10:00退前一天的保证金 + err = s.Every(1).Day().At("10:00").Do(usermanage.AutoDepositRefund) if err != nil { fmt.Println("err:", err) }