Commit cd493dfe by 陶光胜

取数平台调整

parent f07717ff
...@@ -47,12 +47,7 @@ public class DecryptUtils { ...@@ -47,12 +47,7 @@ public class DecryptUtils {
} }
int length = userName.length(); int length = userName.length();
StringBuffer stringBuffer = new StringBuffer(); StringBuffer stringBuffer = new StringBuffer();
stringBuffer.append(userName.charAt(0)); stringBuffer.append(userName.charAt(0)).append("**");
if(length > 1){
for(int k=0; k<length-1 ;k++){
stringBuffer.append("*");
}
}
return stringBuffer.toString(); return stringBuffer.toString();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment