Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
traffic-signal-platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
signal
traffic-signal-platform
Commits
57203f62
Commit
57203f62
authored
May 09, 2024
by
duanruiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[update] 态势监测-数据分组通过bathtime
parent
d44136f3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
TrendServiceImpl.java
...ain/java/net/wanji/opt/service/impl/TrendServiceImpl.java
+7
-7
No files found.
signal-optimize-service/src/main/java/net/wanji/opt/service/impl/TrendServiceImpl.java
View file @
57203f62
...
...
@@ -1706,9 +1706,9 @@ public class TrendServiceImpl implements TrendService {
.
between
(
CrossDirDataHistPO:
:
getBatchTime
,
abnormalCrossListVO
.
getBatchTime
()
-
3600
,
abnormalCrossListVO
.
getBatchTime
());
List
<
CrossDirDataHistPO
>
histPOS
=
crossDirDataHistMapper
.
selectList
(
histQuery
);
if
(!
CollectionUtils
.
isEmpty
(
histPOS
))
{
Map
<
Date
,
List
<
CrossDirDataHistPO
>>
map
=
histPOS
.
stream
().
collect
(
Collectors
.
groupingBy
(
CrossDirDataHistPO:
:
getStart
Time
));
Map
<
Integer
,
List
<
CrossDirDataHistPO
>>
map
=
histPOS
.
stream
().
collect
(
Collectors
.
groupingBy
(
CrossDirDataHistPO:
:
getBatch
Time
));
if
(!
map
.
isEmpty
())
{
for
(
Map
.
Entry
<
Date
,
List
<
CrossDirDataHistPO
>>
entry
:
map
.
entrySet
())
{
for
(
Map
.
Entry
<
Integer
,
List
<
CrossDirDataHistPO
>>
entry
:
map
.
entrySet
())
{
HotspotCrossVO
hotspotCrossVO
=
new
HotspotCrossVO
();
List
<
CrossDirDataHistPO
>
value
=
entry
.
getValue
();
if
(!
CollectionUtils
.
isEmpty
(
value
))
{
...
...
@@ -1722,7 +1722,7 @@ public class TrendServiceImpl implements TrendService {
dirDetails
.
add
(
dirDetail
);
}
hotspotCrossVO
.
setDetailList
(
dirDetails
);
hotspotCrossVO
.
setTimeStamp
(
entry
.
getKey
(
));
hotspotCrossVO
.
setTimeStamp
(
new
Date
(
entry
.
getKey
()
));
hotspotCrossVO
.
setCrossId
(
abnormalCrossListVO
.
getId
());
hotspotCrossVOS
.
add
(
hotspotCrossVO
);
}
...
...
@@ -1794,9 +1794,9 @@ public class TrendServiceImpl implements TrendService {
List
<
CrossLaneDataHistPOExt
>
crossLaneDataHistPOS
=
crossLaneDataHistMapper
.
selectByCrossIdAndTimeSpan
(
crossId
,
(
int
)
(
dateTime
-
3600
),
(
int
)
dateTime
);
if
(!
CollectionUtils
.
isEmpty
(
crossLaneDataHistPOS
))
{
Map
<
Date
,
List
<
CrossLaneDataHistPOExt
>>
collect
=
crossLaneDataHistPOS
.
stream
().
collect
(
Collectors
.
groupingBy
(
CrossLaneDataHistPOExt:
:
getStart
Time
));
for
(
Map
.
Entry
<
Date
,
List
<
CrossLaneDataHistPOExt
>>
entry
:
collect
.
entrySet
())
{
Date
timeStamp
=
entry
.
getKey
();
Map
<
Integer
,
List
<
CrossLaneDataHistPOExt
>>
collect
=
crossLaneDataHistPOS
.
stream
().
collect
(
Collectors
.
groupingBy
(
CrossLaneDataHistPOExt:
:
getBatch
Time
));
for
(
Map
.
Entry
<
Integer
,
List
<
CrossLaneDataHistPOExt
>>
entry
:
collect
.
entrySet
())
{
Integer
timeStamp
=
entry
.
getKey
();
List
<
CrossLaneDataHistPOExt
>
value
=
entry
.
getValue
();
Map
<
Integer
,
List
<
CrossLaneDataHistPOExt
>>
dirLaneMap
=
value
.
stream
().
collect
(
Collectors
.
groupingBy
(
CrossLaneDataHistPOExt:
:
getDir
));
for
(
Map
.
Entry
<
Integer
,
List
<
CrossLaneDataHistPOExt
>>
dirEntry
:
dirLaneMap
.
entrySet
())
{
...
...
@@ -1814,7 +1814,7 @@ public class TrendServiceImpl implements TrendService {
}
hotspotCrossLaneVO
.
setCrossId
(
crossId
);
hotspotCrossLaneVO
.
setDir
(
dir
);
hotspotCrossLaneVO
.
setTimeStamp
(
timeStamp
);
hotspotCrossLaneVO
.
setTimeStamp
(
new
Date
(
timeStamp
)
);
hotspotCrossLaneVO
.
setTurnList
(
laneDetails
);
results
.
add
(
hotspotCrossLaneVO
);
}
...
...
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