| | |
| | | package com.ycl.utils.uuid; |
| | | |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * ID生成器工具类 |
| | |
| | | { |
| | | |
| | | private final static SimpleDateFormat FORMAT = new SimpleDateFormat("yyyyMMddHHmmss"); |
| | | private final static SimpleDateFormat DAY_FORMAT = new SimpleDateFormat("yyyyMMdd"); |
| | | |
| | | /** |
| | | * 获取随机UUID |
| | |
| | | * |
| | | * @return 编号 |
| | | */ |
| | | public static String randomNO() |
| | | public static String randomNO(Date now) |
| | | { |
| | | return UUID.randomUUID().toString().replaceAll("-","").substring(0, 24); |
| | | return DAY_FORMAT.format(now) + UUID.randomUUID().toString().replaceAll("-","").substring(0, 18); |
| | | } |
| | | } |