Commit b8a0fefc by 徐高华

test

parent afb6c694
......@@ -387,7 +387,7 @@ public class GroupChatHmServiceImpl implements GroupChatHmService {
Set<Long> set = new HashSet<>(chatHmIdList);
List<HmLinkChatDTO> linkGroup = this.hmLinkChatService.getLinkCountForHm(wxEnterpriseId,
new ArrayList<>(set));
List<Long> allList = linkGroup.stream().map(dto -> dto.getLinkChatId()).collect(Collectors.toList());
List<Long> allList = linkGroup.stream().map(dto -> dto.getChatHmId()).collect(Collectors.toList());
logger.info("更新活码链接数2={},{}",wxEnterpriseId,allList);
linkGroup.forEach(dto -> {
Long hmId = dto.getChatHmId();
......
......@@ -112,7 +112,7 @@ public class HmLinkChatServiceImpl implements HmLinkChatService {
for (HmLinkChatDTO old : oldList) {
idList.add(old.getChatHmId());
}
log.info("群id={}",idList);
this.groupChatHmService.updateLinkCount(wxEnterpriseId, idList);
return 0;
}
......
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