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
c14de0f5
Commit
c14de0f5
authored
Jul 22, 2025
by
tianbo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor(amos-boot-module-statistics): 整机防爆标识转换为 JSON 数组
- 在 JGDPStatisticsServiceImpl 类中,将整机防爆标识字符串转换为 JSON 数组
parent
f176b13e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
JGDPStatisticsServiceImpl.java
...statistcs/biz/service/impl/JGDPStatisticsServiceImpl.java
+4
-0
No files found.
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/service/impl/JGDPStatisticsServiceImpl.java
View file @
c14de0f5
...
@@ -3220,6 +3220,10 @@ public class JGDPStatisticsServiceImpl {
...
@@ -3220,6 +3220,10 @@ public class JGDPStatisticsServiceImpl {
liftingMap
=
convertCamelToUnderscore
(
lifting
,
null
);
liftingMap
=
convertCamelToUnderscore
(
lifting
,
null
);
liftingMap
.
put
(
"LIFTING_SEQ"
,
lifting
.
getSequenceNbr
());
liftingMap
.
put
(
"LIFTING_SEQ"
,
lifting
.
getSequenceNbr
());
}
}
// 整机防爆标识为附件,应改成json array
if
(
liftingMap
.
get
(
"EXPLOSIONPROOF_SIGN_COMPLETE"
)
!=
null
)
{
liftingMap
.
put
(
"EXPLOSIONPROOF_SIGN_COMPLETE"
,
JSONObject
.
parseArray
((
String
)
liftingMap
.
get
(
"EXPLOSIONPROOF_SIGN_COMPLETE"
)));
}
if
(!
liftingMap
.
isEmpty
())
{
if
(!
liftingMap
.
isEmpty
())
{
Map
<
String
,
Object
>
filterMap
=
liftingMap
.
entrySet
()
Map
<
String
,
Object
>
filterMap
=
liftingMap
.
entrySet
()
.
stream
()
.
stream
()
...
...
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