Commit b39d5ccc authored by shiyu's avatar shiyu

checkIsMine接口新增个人微信二维码

parent c9beebdc
...@@ -235,6 +235,7 @@ public class SelfPageServiceImpl implements SelfPageService { ...@@ -235,6 +235,7 @@ public class SelfPageServiceImpl implements SelfPageService {
map.put("name", StringUtils.isEmpty(user.getNickname()) ? "微信用户" : user.getNickname()); map.put("name", StringUtils.isEmpty(user.getNickname()) ? "微信用户" : user.getNickname());
map.put("background", StringUtils.isEmpty(user.getBackground()) ? CommConsts.DEFAULT_BACKGROUND_URL : user.getBackground()); map.put("background", StringUtils.isEmpty(user.getBackground()) ? CommConsts.DEFAULT_BACKGROUND_URL : user.getBackground());
map.put("profile", user.getProfile()); map.put("profile", user.getProfile());
map.put("wechatQrCode", user.getWechatQrCode());
long followerNum = followFansRecordDao.countFollowers(itemUserId); long followerNum = followFansRecordDao.countFollowers(itemUserId);
map.put("followerNum", followerNum); map.put("followerNum", followerNum);
map.put("targetUserId", itemUserId); map.put("targetUserId", itemUserId);
......
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