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
e3ca6c44
Commit
e3ca6c44
authored
Jul 05, 2023
by
duanruiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[update] 优化实体类解析
parent
19376395
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
20 deletions
+16
-20
SignalStatusServiceImpl.java
...ense/service/controller/impl/SignalStatusServiceImpl.java
+16
-20
No files found.
signal-utc-hisense-service/src/main/java/net/wanji/utc/hisense/service/controller/impl/SignalStatusServiceImpl.java
View file @
e3ca6c44
...
...
@@ -51,27 +51,23 @@ public class SignalStatusServiceImpl implements SignalStatusService {
lightsStatusVO
.
setPhaseId
(
String
.
valueOf
(
phaseId
));
lightsStatusVO
.
setSchemeId
(
String
.
valueOf
(
runningLightsStatusPojo
.
getPLN
()));
List
<
RunningLightsStatusPojo
.
Channel
>
channelList
=
runningLightsStatusPojo
.
getCHANNEL
();
RunningLightsStatusPojo
.
Channel
channel
=
runningLightsStatusPojo
.
getCHANNEL
();
Map
<
String
,
Object
>
dirLampGroupMap
=
new
HashMap
<>();
if
(!
CollectionUtils
.
isEmpty
(
channelList
))
{
for
(
RunningLightsStatusPojo
.
Channel
channel
:
channelList
)
{
List
<
Integer
>
scs
=
channel
.
getSCS
();
if
(!
CollectionUtils
.
isEmpty
(
scs
))
{
for
(
int
i
=
0
;
i
<
scs
.
size
();
i
++)
{
Map
<
Integer
,
String
>
turnColorMap
=
new
HashMap
<>();
String
lightsColor
=
String
.
valueOf
(
scs
.
get
(
i
));
String
wjLightColor
=
PhaseLightColorEnum
.
getWjLightColor
(
lightsColor
);
Integer
turn
=
CommonUtils
.
getTurnByLightsId
(
i
);
turnColorMap
.
put
(
turn
,
wjLightColor
);
String
dir
=
String
.
valueOf
(
CommonUtils
.
getDirByLightsId
(
i
));
if
(
dirLampGroupMap
.
isEmpty
()
||
Objects
.
isNull
(
dirLampGroupMap
.
get
(
dir
)))
{
dirLampGroupMap
.
put
(
dir
,
turnColorMap
);
}
else
{
Map
<
Integer
,
String
>
currentTurnColorMap
=
(
Map
<
Integer
,
String
>)
dirLampGroupMap
.
get
(
dir
);
currentTurnColorMap
.
put
(
turn
,
wjLightColor
);
dirLampGroupMap
.
put
(
dir
,
currentTurnColorMap
);
}
}
List
<
Integer
>
scs
=
channel
.
getSCS
();
if
(!
CollectionUtils
.
isEmpty
(
scs
))
{
for
(
int
i
=
0
;
i
<
scs
.
size
();
i
++)
{
Map
<
Integer
,
String
>
turnColorMap
=
new
HashMap
<>();
String
lightsColor
=
String
.
valueOf
(
scs
.
get
(
i
));
String
wjLightColor
=
PhaseLightColorEnum
.
getWjLightColor
(
lightsColor
);
Integer
turn
=
CommonUtils
.
getTurnByLightsId
(
i
);
turnColorMap
.
put
(
turn
,
wjLightColor
);
String
dir
=
String
.
valueOf
(
CommonUtils
.
getDirByLightsId
(
i
));
if
(
dirLampGroupMap
.
isEmpty
()
||
Objects
.
isNull
(
dirLampGroupMap
.
get
(
dir
)))
{
dirLampGroupMap
.
put
(
dir
,
turnColorMap
);
}
else
{
Map
<
Integer
,
String
>
currentTurnColorMap
=
(
Map
<
Integer
,
String
>)
dirLampGroupMap
.
get
(
dir
);
currentTurnColorMap
.
put
(
turn
,
wjLightColor
);
dirLampGroupMap
.
put
(
dir
,
currentTurnColorMap
);
}
}
}
...
...
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