admin
2020-05-06 24a8d17e007545f7426c48352109aa1a9c6587ee
fanli/src/main/java/com/yeshi/fanli/util/account/UserUtil.java
@@ -77,7 +77,7 @@
   public static String getInviteCode(int base, Long uid) {
      long num = base * 100000000L + uid ;
      long num = base * 100000000L + uid;
      return convert10To36(num);
   }
@@ -179,6 +179,17 @@
      return account;
   }
   public static String filterAlipayName(String name) {
      String st = "";
      for (int i = 0; i < name.length(); i++) {
         if (i == 0)
            st += name.charAt(i);
         else
            st += "*";
      }
      return st;
   }
   public static String filterOrderId(String orderId) {
      if (orderId == null || orderId.length() <= 6)
         return orderId;