Commit 0d8f588c authored by shiyu's avatar shiyu

粉丝列表

parent d99392f1
......@@ -195,7 +195,7 @@ public class FollowFansRecordServiceImpl implements FollowFansRecordService {
followFansRecordRequestDto.setFansId(dto.getSearchTargetId());
List<FollowFansRecord> followRecordList = followFansRecordDao.findList(followFansRecordRequestDto);
List<Long> followerIdList = followRecordList.stream().map(FollowFansRecord::getFansId).collect(Collectors.toList());
List<Long> followerIdList = followRecordList.stream().map(FollowFansRecord::getFollowerId).collect(Collectors.toList());
followFansRecordList.forEach(f -> {
FollowFansRecordVo followFansRecordVo = new FollowFansRecordVo();
EntityMapper.copyAttribute(f, followFansRecordVo);
......
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