Commit b768e5898d386910dcc3562a226aeba5f38830f6

Authored by yangfei
1 parent 9a501dcb49

自动生成追访信息

Showing 1 changed file with 1 additions and 1 deletions

platform-common/src/main/java/com/lyms/platform/common/utils/StringUtils.java View file @ b768e58
... ... @@ -167,7 +167,7 @@
167 167 }else if(id.length()<11){
168 168 return id;
169 169 }else{
170   - return id.substring(0, 6) + "******" + id.substring(12, 15) + "**" + id.substring(id.length());
  170 + return id.substring(0, 3) + "****" + id.substring(7)+"**";
171 171 }
172 172 }
173 173