Commit c784d837 authored by yanzg's avatar yanzg

消除成功接收处理

parent d203f8cf
......@@ -888,4 +888,17 @@ public class StringHelper {
}
return sb.toString().toUpperCase();
}
/**
* 讲guid转换为32位长度的guid
*
* @param from
* @return
*/
public static String guidTo32(String from) {
if (isEmpty(from)) {
return from;
}
return from.replaceAll("-", "");
}
}
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