admin
2019-08-26 5a80c35e42ba1ed7340097ea9b156016e52a23f2
fanli/src/main/java/com/yeshi/fanli/util/account/UserUtil.java
@@ -182,8 +182,8 @@
   public static String filterOrderId(String orderId) {
      if (orderId == null || orderId.length() <= 6)
         return orderId;
      if (orderId.length() <= 16) {// 隐藏3位
         return orderId.substring(0, orderId.length() - 3) + "***";
      if (orderId.length() <= 16) {// 隐藏2位
         return orderId.substring(0, orderId.length() - 2) + "**";
      } else {// 隐藏6位
         return orderId.substring(0, orderId.length() - 6) + "******";
      }