Commit e1def719 by guanzhenshan

更改头程费更新的记录服务启动时间,改为每6小时启动一次

parent 6fd7dae0
......@@ -28,7 +28,7 @@ namespace Bailun.DC.CostFirstMonitoring
{
var now = DateTime.Now;
if (now.Hour == 23 && now.Minute==55) //每天晚上23:55分跑一次
if (now.Hour%6==0 &&now.Minute==55) //每天晚上23:55分跑一次
{
Init();
}
......
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