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
aeb1353a
Commit
aeb1353a
authored
Apr 26, 2024
by
李秀明
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 更新指标时同时更新单位
parent
01b2d6ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
MqttReceiveServiceImpl.java
...join/equipmanage/service/impl/MqttReceiveServiceImpl.java
+3
-0
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/MqttReceiveServiceImpl.java
View file @
aeb1353a
...
@@ -440,6 +440,7 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
...
@@ -440,6 +440,7 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
Map
<
Object
,
Object
>
equipmentIndexKeyMap
=
redisUtils
.
hmget
(
RedisKey
.
EQUIP_INDEX_ADDRESS_KEY
);
Map
<
Object
,
Object
>
equipmentIndexKeyMap
=
redisUtils
.
hmget
(
RedisKey
.
EQUIP_INDEX_ADDRESS_KEY
);
if
(
equipmentIndexKeyMap
.
get
(
indexAddress
)
!=
null
)
{
if
(
equipmentIndexKeyMap
.
get
(
indexAddress
)
!=
null
)
{
EquipmentSpecificIndex
equipmentSpeIndex
=
equipmentSpecificIndexService
.
getEquipmentSpeIndexByAddress
(
indexAddress
,
null
,
null
);
EquipmentSpecificIndex
equipmentSpeIndex
=
equipmentSpecificIndexService
.
getEquipmentSpeIndexByAddress
(
indexAddress
,
null
,
null
);
EquipmentIndex
equipmentIndex
=
equipmentIndexService
.
getById
(
equipmentSpeIndex
.
getEquipmentIndexId
());
equipmentSpeIndex
.
setValue
(
value
);
equipmentSpeIndex
.
setValue
(
value
);
equipmentSpeIndex
.
setValueLabel
(
valueTranslate
(
value
,
equipmentSpeIndex
.
getValueEnum
()));
equipmentSpeIndex
.
setValueLabel
(
valueTranslate
(
value
,
equipmentSpeIndex
.
getValueEnum
()));
...
@@ -449,6 +450,7 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
...
@@ -449,6 +450,7 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
equipmentSpeIndex
.
setDataType
(
dataType
);
equipmentSpeIndex
.
setDataType
(
dataType
);
equipmentSpeIndex
.
setTimeStamp
(
timeStamp
);
equipmentSpeIndex
.
setTimeStamp
(
timeStamp
);
equipmentSpeIndex
.
setUUID
(
UUIDUtils
.
getUUID
());
equipmentSpeIndex
.
setUUID
(
UUIDUtils
.
getUUID
());
equipmentSpeIndex
.
setUnit
(
Objects
.
nonNull
(
equipmentIndex
.
getUnit
())
?
equipmentIndex
.
getUnit
()
:
equipmentIndex
.
getUnitName
());
IotDataVO
iotDataVO
=
new
IotDataVO
();
IotDataVO
iotDataVO
=
new
IotDataVO
();
iotDataVO
.
setKey
(
equipmentSpeIndex
.
getNameKey
());
iotDataVO
.
setKey
(
equipmentSpeIndex
.
getNameKey
());
...
@@ -997,6 +999,7 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
...
@@ -997,6 +999,7 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
String
value
=
iotDataVO
.
getValue
().
toString
();
String
value
=
iotDataVO
.
getValue
().
toString
();
String
traceId
=
iotDataVO
.
getTraceId
();
String
traceId
=
iotDataVO
.
getTraceId
();
equipmentSpeIndex
.
setValue
(
value
);
equipmentSpeIndex
.
setValue
(
value
);
equipmentSpeIndex
.
setUnit
(
equipmentSpecificIndex
.
getIndexUnitName
());
equipmentSpeIndex
.
setTraceId
(
traceId
);
equipmentSpeIndex
.
setTraceId
(
traceId
);
equipmentSpeIndex
.
setValueLabel
(
valueTranslate
(
value
,
equipmentSpecificIndex
.
getValueEnum
()));
equipmentSpeIndex
.
setValueLabel
(
valueTranslate
(
value
,
equipmentSpecificIndex
.
getValueEnum
()));
equipmentSpeIndex
.
setUpdateDate
(
new
Date
());
equipmentSpeIndex
.
setUpdateDate
(
new
Date
());
...
...
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