Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
DataCenter_Core2.1_20190520
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bltdc
DataCenter_Core2.1_20190520
Commits
11b3e035
Commit
11b3e035
authored
Dec 14, 2020
by
guanzhenshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整获取物流基础信息
parent
00c12b51
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
Services.cs
Bailun.DC.SyncLogisticInfo/Services.cs
+7
-5
No files found.
Bailun.DC.SyncLogisticInfo/Services.cs
View file @
11b3e035
...
...
@@ -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'"
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment