|
@@ -810,7 +810,8 @@ public class CoreServiceImpl implements CoreService {
|
|
|
}
|
|
|
}
|
|
|
ArticleUseGroupExample articleUseGroupExample = new ArticleUseGroupExample();
|
|
|
- articleUseGroupExample.createCriteria().andGzhIdEqualTo(planAccount.getGhId()).andUserGroupIdIn(needPushUserGroupIds);
|
|
|
+ articleUseGroupExample.createCriteria().andGzhIdEqualTo(planAccount.getGhId())
|
|
|
+ .andUserGroupIdIn(needPushUserGroupIds).andIsDeleteEqualTo(0);
|
|
|
List<ArticleUseGroup> articleUseGroups = articleUseGroupMapper.selectByExample(articleUseGroupExample);
|
|
|
Map<Integer, List<String>> groupMap = articleUseGroups.stream()
|
|
|
.collect(Collectors.groupingBy(
|