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
11b26b24
Commit
11b26b24
authored
Sep 12, 2023
by
xixinzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改装备消码为站端执行
parent
bf53913e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
16 deletions
+18
-16
MqttReceiveServiceImpl.java
...join/equipmanage/service/impl/MqttReceiveServiceImpl.java
+18
-16
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 @
11b26b24
...
...
@@ -698,22 +698,24 @@ public class MqttReceiveServiceImpl implements MqttReceiveService {
equipmentSpeIndex
.
setEquipmentType
(
topicEntity
.
getType
());
equipmentSpeIndex
.
setUUID
(
UUIDUtils
.
getUUID
());
// 收到信号触发规则恢复码判断
List
<
Map
<
String
,
String
>>
list
=
new
ArrayList
<>();
Map
<
String
,
String
>
map
=
new
HashMap
<>(
2
);
map
.
put
(
"sourceId"
,
String
.
valueOf
(
equipmentSpecificIndex
.
getEquipmentSpecificId
()));
map
.
put
(
"indexValue"
,
value
);
map
.
put
(
"specificIndexId"
,
String
.
valueOf
(
equipmentSpecificIndex
.
getId
()));
list
.
add
(
map
);
EquipQrDateDto
equipQrDateDto
=
new
EquipQrDateDto
();
equipQrDateDto
.
setContrast
(
"indexValue"
);
equipQrDateDto
.
setSource
(
"equip"
);
equipQrDateDto
.
setType
(
equipmentSpecificIndex
.
getTypeCode
());
equipQrDateDto
.
setData
(
list
);
try
{
ruleTrigger
.
publish
(
equipQrDateDto
,
"中心配置赋码规则/update-qr-code"
,
null
);
}
catch
(
Exception
e
)
{
log
.
error
(
"调用规则失败: {}"
,
e
.
getMessage
());
if
(
"zd"
.
equals
(
system
))
{
// 收到信号触发规则恢复码判断
List
<
Map
<
String
,
String
>>
list
=
new
ArrayList
<>();
Map
<
String
,
String
>
map
=
new
HashMap
<>(
2
);
map
.
put
(
"sourceId"
,
String
.
valueOf
(
equipmentSpecificIndex
.
getEquipmentSpecificId
()));
map
.
put
(
"indexValue"
,
value
);
map
.
put
(
"specificIndexId"
,
String
.
valueOf
(
equipmentSpecificIndex
.
getId
()));
list
.
add
(
map
);
EquipQrDateDto
equipQrDateDto
=
new
EquipQrDateDto
();
equipQrDateDto
.
setContrast
(
"indexValue"
);
equipQrDateDto
.
setSource
(
"equip"
);
equipQrDateDto
.
setType
(
equipmentSpecificIndex
.
getTypeCode
());
equipQrDateDto
.
setData
(
list
);
try
{
ruleTrigger
.
publish
(
equipQrDateDto
,
"中心配置赋码规则/update-qr-code"
,
null
);
}
catch
(
Exception
e
)
{
log
.
error
(
"调用规则失败: {}"
,
e
.
getMessage
());
}
}
//es存储数据
...
...
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