1234567891011121314151617 |
-
- package com.xdf.creative.util;
-
- import java.util.UUID;
-
- /**
- * @author DeanYe
- * @date 2018-11-08
- */
- public class UUIDUtil {
-
- public static String getUUID() {
- String uuid = UUID.randomUUID().toString().replaceAll("-", "");
- return uuid;
- }
-
- }
|