Commit c1963bb8 authored by 赵啸非's avatar 赵啸非

修改通知去重复

parent cdcc6e6d
......@@ -138,7 +138,7 @@ public class MettingRecordServiceImpl extends AbstractCRUDServiceImpl<MettingRec
uploadDeviceReq.setDeviceCodeList(Arrays.asList(roomDeviceEntity.getDeviceCode()));
uploadDeviceReq.setAction("preMeetStart");
uploadDeviceReq.setContent(JSON.toJSONString(recordEntity));
log.info("preMeetStart send msg :{}", recordEntity.getDeviceCode());
log.info("preMeetStart send msg :{}", roomDeviceEntity.getDeviceCode());
messageFeign.downMsg(uploadDeviceReq);
}
}
......@@ -164,7 +164,7 @@ public class MettingRecordServiceImpl extends AbstractCRUDServiceImpl<MettingRec
uploadDeviceReq.setDeviceCodeList(Arrays.asList(roomDeviceEntity.getDeviceCode()));
uploadDeviceReq.setAction("preMeetStart");
uploadDeviceReq.setContent(JSON.toJSONString(entity));
log.info("preMeetStart send msg :{}", entity.getDeviceCode());
log.info("preMeetStart send msg :{}", roomDeviceEntity.getDeviceCode());
messageFeign.downMsg(uploadDeviceReq);
}
......
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