yujian
2019-07-31 f4548a3ee46afe45da4ee2a42dc169c575deee9f
fanli/src/main/java/com/yeshi/fanli/service/impl/user/UserInfoServiceImpl.java
@@ -726,17 +726,23 @@
         userInfoVO.setLastLoginTime(null);
      }
      /*
       * 显示用户微信 淘宝 老版本存在 String wxUnionId = userInfoVO.getWxUnionId(); if
       * (wxUnionId == null || wxUnionId.trim().length() == 0) {
       * userInfoVO.setWxName(null); }
       *
       * String taoBaoUid = userInfoVO.getTaoBaoUid(); if (taoBaoUid == null
       * || taoBaoUid.trim().length() == 0) { userInfoVO.setTbName(null); }
       */
       //显示用户微信 淘宝 老版本存在
       String wxUnionId = userInfoVO.getWxUnionId();
       if (wxUnionId == null || wxUnionId.trim().length() == 0) {
          userInfoVO.setWxName(null);
       }
       // 是否绑定支付宝(购买 +  分享权限)
       String taoBaoUid = userInfoVO.getTaoBaoUid();
       String tbSpecialId = userInfoVO.getTbSpecialId();
       String tbRelationId = userInfoVO.getTbRelationId();
       if (StringUtil.isNullOrEmpty(taoBaoUid) || StringUtil.isNullOrEmpty(tbSpecialId) || StringUtil.isNullOrEmpty(tbRelationId)) {
          userInfoVO.setTbName(null);
          userInfoVO.setTaoBaoUid(null);
       }
      Long uid = userInfoVO.getId();
      /* 绑定收款账号信息 */
      List<BindingAccount> account = bindingAccountMapper.selectByUid(uid);
      if (account != null && account.size() > 0) {