Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
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
项目统一框架
amos-boot-biz
Commits
baaedc5a
Commit
baaedc5a
authored
Sep 07, 2023
by
lisong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
414b75d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
ElevatorController.java
...ot/module/elevator/biz/controller/ElevatorController.java
+13
-0
No files found.
amos-boot-system-tzs/amos-boot-module-96333/amos-boot-module-96333-biz/src/main/java/com/yeejoin/amos/boot/module/elevator/biz/controller/ElevatorController.java
View file @
baaedc5a
...
@@ -270,6 +270,19 @@ public class ElevatorController extends BaseController {
...
@@ -270,6 +270,19 @@ public class ElevatorController extends BaseController {
// }
// }
// elevatorDtoList.add(eleDto);
// elevatorDtoList.add(eleDto);
// }
// }
List
<
LinkedHashMap
<
String
,
Object
>>
streetList
=
null
;
if
(
redisUtil
.
hasKey
(
STREET
))
{
streetList
=
(
List
<
LinkedHashMap
<
String
,
Object
>>)
redisUtil
.
get
(
STREET
);
}
if
(!
ObjectUtils
.
isEmpty
(
map
.
get
(
"street"
))
&&
!
ObjectUtils
.
isEmpty
(
streetList
))
{
List
<
LinkedHashMap
<
String
,
Object
>>
collect
=
streetList
.
stream
().
filter
(
item
->
item
.
get
(
"regionCode"
).
toString
().
equals
(
map
.
get
(
"street"
).
toString
())).
collect
(
Collectors
.
toList
());
if
(!
ObjectUtils
.
isEmpty
(
collect
))
{
map
.
put
(
"street"
,
collect
.
get
(
0
).
get
(
"regionName"
));
}
}
List
<
Map
<
String
,
Object
>>
list
=
new
ArrayList
<>();
List
<
Map
<
String
,
Object
>>
list
=
new
ArrayList
<>();
list
.
add
(
map
);
list
.
add
(
map
);
return
ResponseHelper
.
buildResponse
(
list
);
return
ResponseHelper
.
buildResponse
(
list
);
...
...
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