Commit 47c19edb authored by LiuLin's avatar LiuLin

fix(jyjc):报检规则触发规则功能开发,联调测试

parent 5d7aea18
......@@ -451,7 +451,7 @@ public class CheckServiceImpl implements ICheckService {
if (!ObjectUtils.isEmpty(userId)){
model.setUserId(userId);
}
FeignClientResult<MessageModel> update = Systemctl.messageClient.update(model);
Systemctl.messageClient.update(model);
}catch (Exception e) {
e.printStackTrace();
......
......@@ -116,7 +116,7 @@ public void sendReminderMessage(){
messageModel.setIsSendWeb(true);
messageModel.setMsgType("EQUIP_HINT");
messageModel.setMsgTypeLabel("设备检验");
Systemctl.messageClient.create(messageModel);
Systemctl.messageClient.create(messageModel);
log.info("信息发送完成");
} catch (ParseException e) {
e.printStackTrace();
......
......@@ -739,7 +739,7 @@ public class CheckServiceImpl implements ICheckService {
if (!ObjectUtils.isEmpty(userId)) {
model.setUserId(userId);
}
FeignClientResult<MessageModel> update = Systemctl.messageClient.update(model);
Systemctl.messageClient.update(model);
} catch (Exception e) {
e.printStackTrace();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment