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
e0475f0f
Commit
e0475f0f
authored
Oct 08, 2023
by
李秀明
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(equip): 空指针处理
parent
3539ed33
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
EquipmentDetailServiceImpl.java
.../equipmanage/service/impl/EquipmentDetailServiceImpl.java
+4
-3
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/EquipmentDetailServiceImpl.java
View file @
e0475f0f
...
...
@@ -404,9 +404,10 @@ public class EquipmentDetailServiceImpl extends ServiceImpl<EquipmentDetailMappe
String
qrCodeImage
=
QRCodeUtil
.
genQrCodeBase64PngWithWord
(
equipmentSpecific
.
getQrCode
(),
200
,
200
,
equipmentSpecific
.
getQrCode
(),
200
,
type
);
equipmentDetail
.
setQrCodeImage
(
qrCodeImage
);
// 消防系统
FireFightingSystemEntity
fireFightingSystem
=
fireFightingSystemService
.
getOneById
(
Long
.
valueOf
(
equipmentSpecific
.
getSystemId
()));
equipmentSpecific
.
setSystemName
(
Objects
.
isNull
(
fireFightingSystem
)
?
""
:
fireFightingSystem
.
getName
());
// } // 1640241257290686465
if
(
Objects
.
nonNull
(
equipmentSpecific
.
getSystemId
()))
{
FireFightingSystemEntity
fireFightingSystem
=
fireFightingSystemService
.
getOneById
(
Long
.
valueOf
(
equipmentSpecific
.
getSystemId
()));
equipmentSpecific
.
setSystemName
(
Objects
.
isNull
(
fireFightingSystem
)
?
""
:
fireFightingSystem
.
getName
());
}
// 装备分类
Equipment
equipment
=
equipmentDetail
.
getEquipment
();
if
(
Objects
.
nonNull
(
equipment
))
{
...
...
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