Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
谢明辉
/
fanxing3-integration
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit e173bc41
authored
May 10, 2022
by
毛树良
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
调整分页大小
1 parent
1d58e920
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
fanxing-docking-gb1400/src/main/java/com/viontech/scheduled/DeviceSyncScheduled.java
fanxing-docking-gb1400/src/main/java/com/viontech/scheduled/LaneSyncScheduled.java
fanxing-docking-gb1400/src/main/java/com/viontech/scheduled/TollgateSyncScheduled.java
fanxing-docking-gb1400/src/main/java/com/viontech/scheduled/DeviceSyncScheduled.java
View file @
e173bc4
...
@@ -63,7 +63,7 @@ public class DeviceSyncScheduled {
...
@@ -63,7 +63,7 @@ public class DeviceSyncScheduled {
deviceQry
.
setModifyTime_gte
(
lastTimeUtc
);
deviceQry
.
setModifyTime_gte
(
lastTimeUtc
);
deviceQry
.
setModifyTime_lte
(
currentTimeUtc
);
deviceQry
.
setModifyTime_lte
(
currentTimeUtc
);
deviceQry
.
setOffset
(
0
);
deviceQry
.
setOffset
(
0
);
deviceQry
.
setLimit
(
1
0
);
deviceQry
.
setLimit
(
2
0
);
List
<
DeviceModel
>
deviceModels
=
trafficEventService
.
selectDeviceDatas
(
deviceQry
);
List
<
DeviceModel
>
deviceModels
=
trafficEventService
.
selectDeviceDatas
(
deviceQry
);
log
.
info
(
"查询范围(lastTimeUtc,currentTimeUtc]=({},{}],本批次设备待同步数据总{}条。"
,
lastTimeUtc
,
currentTimeUtc
,
deviceModels
.
size
());
log
.
info
(
"查询范围(lastTimeUtc,currentTimeUtc]=({},{}],本批次设备待同步数据总{}条。"
,
lastTimeUtc
,
currentTimeUtc
,
deviceModels
.
size
());
if
(!
CollectionUtils
.
isEmpty
(
deviceModels
))
{
if
(!
CollectionUtils
.
isEmpty
(
deviceModels
))
{
...
...
fanxing-docking-gb1400/src/main/java/com/viontech/scheduled/LaneSyncScheduled.java
View file @
e173bc4
...
@@ -63,7 +63,7 @@ public class LaneSyncScheduled {
...
@@ -63,7 +63,7 @@ public class LaneSyncScheduled {
laneQry
.
setModifyTime_gte
(
lastTimeUtc
);
laneQry
.
setModifyTime_gte
(
lastTimeUtc
);
laneQry
.
setModifyTime_lte
(
currentTimeUtc
);
laneQry
.
setModifyTime_lte
(
currentTimeUtc
);
laneQry
.
setOffset
(
0
);
laneQry
.
setOffset
(
0
);
laneQry
.
setLimit
(
1
0
);
laneQry
.
setLimit
(
2
0
);
List
<
LaneModel
>
laneModels
=
trafficEventService
.
selectLaneDatas
(
laneQry
);
List
<
LaneModel
>
laneModels
=
trafficEventService
.
selectLaneDatas
(
laneQry
);
log
.
info
(
"查询范围(lastTimeUtc,currentTimeUtc]=({},{}],本批次车道待同步数据总{}条。"
,
lastTimeUtc
,
currentTimeUtc
,
laneModels
.
size
());
log
.
info
(
"查询范围(lastTimeUtc,currentTimeUtc]=({},{}],本批次车道待同步数据总{}条。"
,
lastTimeUtc
,
currentTimeUtc
,
laneModels
.
size
());
if
(!
CollectionUtils
.
isEmpty
(
laneModels
))
{
if
(!
CollectionUtils
.
isEmpty
(
laneModels
))
{
...
...
fanxing-docking-gb1400/src/main/java/com/viontech/scheduled/TollgateSyncScheduled.java
View file @
e173bc4
...
@@ -64,7 +64,7 @@ public class TollgateSyncScheduled {
...
@@ -64,7 +64,7 @@ public class TollgateSyncScheduled {
tollgateQry
.
setModifyTime_gte
(
lastTimeUtc
);
tollgateQry
.
setModifyTime_gte
(
lastTimeUtc
);
tollgateQry
.
setModifyTime_lte
(
currentTimeUtc
);
tollgateQry
.
setModifyTime_lte
(
currentTimeUtc
);
tollgateQry
.
setOffset
(
0
);
tollgateQry
.
setOffset
(
0
);
tollgateQry
.
setLimit
(
1
0
);
tollgateQry
.
setLimit
(
2
0
);
List
<
TollgateModel
>
tollgateModels
=
trafficEventService
.
selectTollgateDatas
(
tollgateQry
);
List
<
TollgateModel
>
tollgateModels
=
trafficEventService
.
selectTollgateDatas
(
tollgateQry
);
log
.
info
(
"查询范围(lastTimeUtc,currentTimeUtc]=({},{}],本批次卡口待同步数据总{}条。"
,
lastTimeUtc
,
currentTimeUtc
,
tollgateModels
.
size
());
log
.
info
(
"查询范围(lastTimeUtc,currentTimeUtc]=({},{}],本批次卡口待同步数据总{}条。"
,
lastTimeUtc
,
currentTimeUtc
,
tollgateModels
.
size
());
if
(!
CollectionUtils
.
isEmpty
(
tollgateModels
))
{
if
(!
CollectionUtils
.
isEmpty
(
tollgateModels
))
{
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment