yujian
2020-01-18 f4a0f2acc63d7785eab108419a4e16f5f688cb95
fanli/src/main/java/com/yeshi/fanli/util/account/UserUtil.java
@@ -75,9 +75,9 @@
                  + "/client/threeShareNew?uid=" + uid + "&_=" + java.lang.System.currentTimeMillis());
   }
   public static String getInviteCode(Long uid) {
   public static String getInviteCode(int base, Long uid) {
      long num = 1000000000L + uid;
      long num = base * 100000000L + uid ;
      return convert10To36(num);
   }
@@ -183,11 +183,9 @@
      if (orderId == null || orderId.length() <= 6)
         return orderId;
      if (orderId.length() <= 16) {// 隐藏2位
         return orderId.substring(0, orderId.length() - 3) + "**";
         return orderId.substring(0, orderId.length() - 2) + "**";
      } else {// 隐藏6位
         return orderId.substring(0, orderId.length() - 6) + "******";
      }
   }
}