uuid生成工具类时间:2024-12-28 17:07:08 public class UUIDTool { public static String getUUID() { return UUID.randomUUID().toString().replace("-", ""); } }