添加开发者日志功能
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 22s
Docker Build & Deploy / Deploy to Production (push) Successful in 8s

This commit is contained in:
孙诚
2025-12-29 16:45:51 +08:00
parent cbbb0c10cb
commit a13e1fe9e8
6 changed files with 739 additions and 2 deletions

View File

@@ -17,8 +17,8 @@ public static class Expand
q.AddTrigger(opts => opts
.ForJob(emailJobKey)
.WithIdentity("EmailSyncTrigger")
.WithCronSchedule("0 0/20 * * * ?") // 每20分钟执行
.WithDescription("每20分钟同步一次邮件"));
.WithCronSchedule("0 0/10 * * * ?") // 每10分钟执行
.WithDescription("每10分钟同步一次邮件"));
// 配置周期性账单任务 - 每天早上6点执行
var periodicBillJobKey = new JobKey("PeriodicBillJob");