Commit 1dff61e4 authored by fangxinjiang's avatar fangxinjiang

消息提醒

parent 49660f52
...@@ -142,12 +142,16 @@ public class MsgInfoServiceImpl extends ServiceImpl<MsgInfoMapper, MsgInfo> impl ...@@ -142,12 +142,16 @@ public class MsgInfoServiceImpl extends ServiceImpl<MsgInfoMapper, MsgInfo> impl
for (MsgInfo ms:msgInfos){ for (MsgInfo ms:msgInfos){
temp = tempMap.get(ms.getOrderNo()); temp = tempMap.get(ms.getOrderNo());
if (Common.isNotNull(temp)){ if (Common.isNotNull(temp)){
tempMap.remove(ms.getOrderNo());
continue; continue;
} }
ms.setCreateTime(LocalDateTime.now()); ms.setCreateTime(LocalDateTime.now());
ms.setUrl(MesConstants.orderUrl+ms.getOrderId()); ms.setUrl(MesConstants.orderUrl+ms.getOrderId());
saves.add(ms); saves.add(ms);
} }
if (Common.isNotNull(tempMap)){
this.removeByIds(tempMap.values());
}
this.saveBatch(saves); this.saveBatch(saves);
} }
} }
......
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