Commit 8ac2af28 authored by 黄奎's avatar 黄奎

定时任务修改

parent 56a324ff
...@@ -139,7 +139,7 @@ namespace Edu.WebApi.Timers ...@@ -139,7 +139,7 @@ namespace Edu.WebApi.Timers
marketTimer = new System.Timers.Timer() marketTimer = new System.Timers.Timer()
{ {
Interval = (1000 * 60) * (10) //10分钟执行一次 Interval = (1000 * 60) * (5) //5分钟执行一次
}; };
marketTimer.Elapsed += new System.Timers.ElapsedEventHandler(DealMarketConsultantData); marketTimer.Elapsed += new System.Timers.ElapsedEventHandler(DealMarketConsultantData);
marketTimer.Enabled = true; marketTimer.Enabled = true;
...@@ -217,22 +217,22 @@ namespace Edu.WebApi.Timers ...@@ -217,22 +217,22 @@ namespace Edu.WebApi.Timers
{ {
if (Interlocked.Exchange(ref marketconsultant_Timer, 1) == 0) if (Interlocked.Exchange(ref marketconsultant_Timer, 1) == 0)
{ {
var currentDate = DateTime.Now; var today = DateTime.Now;
var currentDate = Common.ConvertHelper.FormatDate(today);
string cacheData = redis.Get(createMarkDataKey); string cacheData = redis.Get(createMarkDataKey);
if (string.IsNullOrEmpty(cacheData)) if (string.IsNullOrEmpty(cacheData))
{ {
redis.Set(createMarkDataKey, Common.ConvertHelper.FormatDate(currentDate)); redis.Set(createMarkDataKey, currentDate);
cacheData = Common.ConvertHelper.FormatDate(currentDate); cacheData = currentDate;
} }
if (!string.IsNullOrEmpty(cacheData) && cacheData != Common.ConvertHelper.FormatDate(currentDate)) if (!string.IsNullOrEmpty(cacheData) && cacheData != currentDate)
{ {
redis.Set(createMarkDataKey, Common.ConvertHelper.FormatDate(currentDate)); marketConsultantModule.CreateConsultantDataModule(today);
marketConsultantModule.CreateConsultantDataModule(currentDate); marketConsultantModule.CreateMarketDataModule(today);
marketConsultantModule.CreateMarketDataModule(currentDate);
UserInfo user = UserReidsCache.GetUserLoginInfo("1"); UserInfo user = UserReidsCache.GetUserLoginInfo("1");
studentStatModule.CreateStudentStaticModule(user, Common.ConvertHelper.FormatDate(currentDate.AddDays(-1)), Common.ConvertHelper.FormatDate(currentDate), isInit: false); studentStatModule.CreateStudentStaticModule(user, Common.ConvertHelper.FormatDate(today.AddDays(-1)), currentDate, isInit: false);
studentStatModule.CreateStudentMarketModule(user, Common.ConvertHelper.FormatDate(currentDate.AddDays(-1)), Common.ConvertHelper.FormatDate(currentDate), isInit: false); studentStatModule.CreateStudentMarketModule(user, Common.ConvertHelper.FormatDate(today.AddDays(-1)), currentDate, isInit: false);
redis.Set(createMarkDataKey, currentDate);
} }
Interlocked.Exchange(ref marketconsultant_Timer, 0); Interlocked.Exchange(ref marketconsultant_Timer, 0);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment