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
b4939220
Commit
b4939220
authored
Dec 08, 2021
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改航空器 详情
parent
6e6c35c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
AircraftController.java
...os/boot/module/jcs/biz/controller/AircraftController.java
+6
-6
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-jcs-biz/src/main/java/com/yeejoin/amos/boot/module/jcs/biz/controller/AircraftController.java
View file @
b4939220
...
...
@@ -192,15 +192,15 @@ public class AircraftController extends BaseController {
if
(
dataModel
!=
null
)
{
Map
<
String
,
Object
>
map
=
dataModel
.
getResult
();
if
(
map
!=
null
)
{
map1
.
put
(
"aircraftModel"
,
map
.
get
(
"aircraftType"
)
);
map1
.
put
(
"dynamicFlightId"
,
map
.
get
(
"dynamicFlightId"
)
);
map1
.
put
(
"landingTime"
,
map
.
get
(
"sta"
)
);
map1
.
put
(
"aircraftModel"
,
map
.
containsKey
(
"aircraftType"
)?
map
.
get
(
"aircraftType"
):
null
);
map1
.
put
(
"dynamicFlightId"
,
map
.
containsKey
(
"dynamicFlightId"
)?
map
.
get
(
"dynamicFlightId"
):
null
);
map1
.
put
(
"landingTime"
,
map
.
containsKey
(
"sta"
)?
map
.
get
(
"sta"
):
null
);
/* 任务 3488 根据航班号查询航班信息回填 增加跑道,机位字段 start*/
map1
.
put
(
"runway"
,
map
.
get
(
"runway"
)
);
map1
.
put
(
"stand"
,
map
.
get
(
"stand"
)
);
map1
.
put
(
"runway"
,
map
.
containsKey
(
"runway"
)?
map
.
get
(
"runway"
):
null
);
map1
.
put
(
"stand"
,
map
.
containsKey
(
"stand"
)?
map
.
get
(
"stand"
):
null
);
/* 任务 3488 根据航班号查询航班信息回填 end*/
// map1.put("fuelQuantity", map.get(""));
map1
.
put
(
"passengerCapacity"
,
map
.
get
(
"psgNumTotal"
)
);
map1
.
put
(
"passengerCapacity"
,
map
.
containsKey
(
"passengerCapacity"
)?
map
.
get
(
"passengerCapacity"
):
null
);
}
}
return
ResponseHelper
.
buildResponse
(
map1
);
...
...
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