Commit ecdedd84 authored by shiyu's avatar shiyu

公众号

parent 4fe341d7
......@@ -240,6 +240,9 @@ public class ItemServiceImpl implements ItemService {
followFansRecordRequestDto.setLimit(100000);
List<FollowFansRecord> followFansRecordList = followFansRecordDao.findList(followFansRecordRequestDto);
List<Long> followerIds = followFansRecordList.stream().map(FollowFansRecord::getFollowerId).collect(Collectors.toList());
if (CollectionUtils.isEmpty(followerIds)) {
return Result.success(agentTranceResponseVoPageInfo);
}
// 获取官方用户id
List<ItemsOfficialUsersRelation> itemsOfficialUsersRelations = itemsOfficialUsersRelationDao.list();
......
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