REQ-3201: 添加日志分析问题
This commit is contained in:
parent
a0277d0499
commit
aab8fb426a
@ -63,15 +63,12 @@ public class CardDao extends ServiceImpl<CardMapper, Card> {
|
||||
key.setWorkspaceId(card.getReceiverWorkspaceId());
|
||||
key.setAppType(card.getReceiverAppType());
|
||||
|
||||
String bizMessageId = account2BizMessageId.get(key);
|
||||
if (bizMessageId == null) {
|
||||
log.info("setSendSuccess: card[{}] not found bizMessageId", card.getId());
|
||||
continue;
|
||||
}
|
||||
Card update = new Card();
|
||||
update.setId(card.getId());
|
||||
update.setImTaskId(imResponse.getId());
|
||||
update.setBizMessageId(bizMessageId);
|
||||
String bizMessageId = account2BizMessageId.get(key);
|
||||
if (bizMessageId != null)
|
||||
update.setBizMessageId(bizMessageId);
|
||||
updates.add(update);
|
||||
}
|
||||
updateBatchById(updates);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user