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
00986f54
Commit
00986f54
authored
Aug 19, 2024
by
麻笑宇
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/develop_tzs_register_to_0715' into…
Merge remote-tracking branch 'origin/develop_tzs_register_to_0715' into develop_tzs_register_to_0715
parents
117a2ebc
c09bb8d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
8 deletions
+24
-8
AlertCalledServiceImpl.java
...ule/elevator/biz/service/impl/AlertCalledServiceImpl.java
+24
-8
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/service/impl/AlertCalledServiceImpl.java
View file @
00986f54
...
...
@@ -1101,20 +1101,36 @@ public class AlertCalledServiceImpl extends BaseService<AlertCalledDto,AlertCall
f
.
setValue
(
o
.
toString
());
}
// 派遣状态
if
(
"dispatchStatus"
.
equals
(
f
.
getKey
())
&&
Boolean
.
TRUE
.
equals
(
dto
.
getDispatchStatus
()))
{
f
.
setValue
(
"已通知已派遣"
);
if
(
"dispatchStatus"
.
equals
(
f
.
getKey
()))
{
if
(
Boolean
.
TRUE
.
equals
(
dto
.
getDispatchStatus
())){
f
.
setValue
(
"已通知已派遣"
);
}
else
{
f
.
setValue
(
"未通知未派遣"
);
}
}
// 到达状态
if
(
"arriveStatus"
.
equals
(
f
.
getKey
())
&&
Boolean
.
TRUE
.
equals
(
dto
.
getArriveStatus
()))
{
f
.
setValue
(
"已到达"
);
if
(
"arriveStatus"
.
equals
(
f
.
getKey
()))
{
if
(
Boolean
.
TRUE
.
equals
(
dto
.
getArriveStatus
())){
f
.
setValue
(
"已到达"
);
}
else
{
f
.
setValue
(
"未到达"
);
}
}
// 伤亡状态
if
(
"casualtiesStatus"
.
equals
(
f
.
getKey
())
&&
Boolean
.
TRUE
.
equals
(
dto
.
getCasualtiesStatus
()))
{
f
.
setValue
(
"出现伤亡"
);
if
(
"casualtiesStatus"
.
equals
(
f
.
getKey
()))
{
if
(
Boolean
.
TRUE
.
equals
(
dto
.
getCasualtiesStatus
())){
f
.
setValue
(
"出现伤亡"
);
}
else
{
f
.
setValue
(
"未出现伤亡"
);
}
}
// 救援状态
if
(
"rescueStatus"
.
equals
(
f
.
getKey
())
&&
Boolean
.
TRUE
.
equals
(
dto
.
getRescueStatus
()))
{
f
.
setValue
(
"救援成功"
);
if
(
"rescueStatus"
.
equals
(
f
.
getKey
()))
{
if
(
Boolean
.
TRUE
.
equals
(
dto
.
getRescueStatus
())){
f
.
setValue
(
"救援成功"
);
}
else
{
f
.
setValue
(
"未救援成功"
);
}
}
// 是否超时
if
(
"isTimeout"
.
equals
(
f
.
getKey
()))
{
...
...
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