username@email.com
2024-05-17 850a2643d3c83f0c1b6aa4e0c210c8f3e4604d17
CoreCms.Net.Task/HangfireDispose.cs
@@ -70,7 +70,8 @@
            //自动取消服务器订单任务
            RecurringJob.AddOrUpdate<AutoCancelServiceOrderJob>("AutoCancelServiceOrderJob", s => s.Execute(), "0 0/5 * * * ? ", new RecurringJobOptions { TimeZone = TimeZoneInfo.Local }); // 每5分钟取消一次订单
            //定时计算经销商推广费用
            RecurringJob.AddOrUpdate<AutoSettleAchievementTotal>("AutoSettleAchievementTotal", s => s.Execute(), "0 0 0/1 * * ? ", new RecurringJobOptions { TimeZone = TimeZoneInfo.Local }); // 每小时计算经销商推广费用
        }
        #endregion