1234567891011121314151617181920 |
- package cn.com.qmth.examcloud.commons.util;
- /**
- * UUID
- *
- * @author WANGWEI
- * @date 2018年2月27日
- * @Copyright (c) 2018-2020 http://www.qmth.com.cn/ All Rights Reserved.
- */
- public class UUID {
- /**
- * UUID
- *
- * @author WANGWEI
- * @return
- */
- public static String randomUUID() {
- return java.util.UUID.randomUUID().toString().replaceAll("-", "");
- }
- }
|