Commit 01164349 by guanzhenshan

调整平台应收账款服务的重跑天数,改为重跑前面的25天数据

parent 2288b486
......@@ -23,7 +23,7 @@ namespace Bailun.DC.DailyPlatformReceivable
// var _services = new Services();
// var start = DateTime.Parse("2020-02-01");
// var start = DateTime.Parse("2020-04-01");
// while (start.AddDays(1) < DateTime.Now)
// {
// Console.WriteLine(start);
......
......@@ -39,7 +39,7 @@ namespace Bailun.DC.DailyPlatformReceivable
}
else if (now.Hour == 5 && now.Minute == 11)
{
var start = now.AddDays(-30);
var start = now.AddDays(-25);
while (start.AddDays(1) < DateTime.Now)
{
Console.WriteLine(start);
......
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