1、自动审核保证金时间由9点30改为10点;

This commit is contained in:
chenlin 2024-12-11 09:54:37 +08:00
parent 88c6065d7f
commit 32f819845b

View File

@ -189,8 +189,8 @@ func run() error {
fmt.Println("err:", err) fmt.Println("err:", err)
} }
// 每天早上9点30分退前一天的保证金 // 每天上午10:00退前一天的保证金
err = s.Every(1).Day().At("09:30").Do(usermanage.AutoDepositRefund) err = s.Every(1).Day().At("10:00").Do(usermanage.AutoDepositRefund)
if err != nil { if err != nil {
fmt.Println("err:", err) fmt.Println("err:", err)
} }