Commit d0a0596c authored by shiyu's avatar shiyu

账号冻结

parent 1f1d5fd7
......@@ -176,7 +176,7 @@ public class AdminUserServiceImpl implements AdminUserService {
followFansRecordRequestDto.setPage(dto.getPage());
followFansRecordRequestDto.setLimit(dto.getLimit());
//关注列表
if (dto.getListType() == 1 ) {
if (dto.getListType() == 1) {
followFansRecordRequestDto.setFansId(dto.getId());
} else {
//粉丝列表
......@@ -188,7 +188,7 @@ public class AdminUserServiceImpl implements AdminUserService {
for (FollowFansRecord followFansRecord : followFansRecordList) {
UserVo userVo = new UserVo();
User user = new User();
if (dto.getListType() == 1 ) {
if (dto.getListType() == 1) {
user = cacheUtil.appletUserInfoCache.get(followFansRecord.getFollowerId()).get();
} else {
user = cacheUtil.appletUserInfoCache.get(followFansRecord.getFansId()).get();
......
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