删去utils.uuid下 IdUtils类中 多余的import(同包下的UUID类)
This commit is contained in:
		
							parent
							
								
									b431703262
								
							
						
					
					
						commit
						9651a7d7fc
					
				| 
						 | 
					@ -1,21 +1,17 @@
 | 
				
			||||||
package com.ruoyi.common.utils.uuid;
 | 
					package com.ruoyi.common.utils.uuid;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import com.ruoyi.common.utils.uuid.UUID;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * ID生成器工具类
 | 
					 * ID生成器工具类
 | 
				
			||||||
 * 
 | 
					 * 
 | 
				
			||||||
 * @author ruoyi
 | 
					 * @author ruoyi
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
public class IdUtils
 | 
					public class IdUtils {
 | 
				
			||||||
{
 | 
					 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * 获取随机UUID
 | 
					     * 获取随机UUID
 | 
				
			||||||
     * 
 | 
					     * 
 | 
				
			||||||
     * @return 随机UUID
 | 
					     * @return 随机UUID
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public static String randomUUID()
 | 
					    public static String randomUUID() {
 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        return UUID.randomUUID().toString();
 | 
					        return UUID.randomUUID().toString();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -24,8 +20,7 @@ public class IdUtils
 | 
				
			||||||
     * 
 | 
					     * 
 | 
				
			||||||
     * @return 简化的UUID,去掉了横线
 | 
					     * @return 简化的UUID,去掉了横线
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public static String simpleUUID()
 | 
					    public static String simpleUUID() {
 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        return UUID.randomUUID().toString(true);
 | 
					        return UUID.randomUUID().toString(true);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -34,8 +29,7 @@ public class IdUtils
 | 
				
			||||||
     * 
 | 
					     * 
 | 
				
			||||||
     * @return 随机UUID
 | 
					     * @return 随机UUID
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public static String fastUUID()
 | 
					    public static String fastUUID() {
 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        return UUID.fastUUID().toString();
 | 
					        return UUID.fastUUID().toString();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -44,8 +38,7 @@ public class IdUtils
 | 
				
			||||||
     * 
 | 
					     * 
 | 
				
			||||||
     * @return 简化的UUID,去掉了横线
 | 
					     * @return 简化的UUID,去掉了横线
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    public static String fastSimpleUUID()
 | 
					    public static String fastSimpleUUID() {
 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        return UUID.fastUUID().toString(true);
 | 
					        return UUID.fastUUID().toString(true);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue