//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
package com.tiptimes.util;
import java.util.UUID;
public class UUIDUtils {
public UUIDUtils() {
}
public static String getUUID() {
String uString = UUID.randomUUID().toString();
uString = uString.replace("-", "");
return uString;
}
}
-
王琮 authored0fc521e1