Commit 11b3e035 by guanzhenshan

调整获取物流基础信息

parent 00c12b51
......@@ -28,7 +28,7 @@ namespace Bailun.DC.SyncLogisticInfo
{
var now = DateTime.Now;
if (now.Minute%5==0 && !isRuning) //每5分钟同步一次
if (now.Minute%30==0 && !isRuning) //每5分钟同步一次
{
Console.WriteLine("开始启动 " + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
Init();
......@@ -58,8 +58,6 @@ namespace Bailun.DC.SyncLogisticInfo
//starttime = DateTime.Parse("2020-09-05");
//endtime = starttime.AddDays(1);
while(currenttime>endtime)
{
var page = 1;
var pagesize = 1000;
var total = -1;
......@@ -75,7 +73,7 @@ namespace Bailun.DC.SyncLogisticInfo
if (m != null && m.HasValue)
{
starttime = m.Value.AddMinutes(-2);
endtime = starttime.AddHours(8);
endtime = starttime.AddHours(2);
}
}
......@@ -85,6 +83,11 @@ namespace Bailun.DC.SyncLogisticInfo
starttime = DateTime.Now.AddMinutes(-2);
}
if(endtime>DateTime.Now)
{
endtime = DateTime.Now;
}
while (total == -1 || total > ((page - 1) * pagesize))
{
......@@ -126,7 +129,6 @@ namespace Bailun.DC.SyncLogisticInfo
cn.Execute("update job_point_log set start_time='" + starttime.ToString("yyyy-MM-dd HH:mm:ss") + "',end_time='" + endtime.ToString("yyyy-MM-dd HH:mm:ss") + "' where job_name='dc-base-logisticinfo'");
}
}
......
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