|
|
@ -53,12 +53,11 @@ public class OrderUtil { |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public static String generateOrderNo() throws Exception { |
|
|
|
public static String generateOrderNo() throws Exception { |
|
|
|
// 5位随机数 + 1位线程生成数
|
|
|
|
// 5位随机数 + 1位线程生成数
|
|
|
|
String randomNum = (new Random().nextInt(899999) + 10000) + IDGenerator.nextId(1); |
|
|
|
String randomNum = (new Random().nextInt(8999) + 1000) + IDGenerator.nextId(1); |
|
|
|
// 生成订单号
|
|
|
|
// 生成订单号
|
|
|
|
return DateUtil.date2String(new Date(),"yyyyMMddHHmmss") + randomNum; |
|
|
|
return DateUtil.date2String(new Date(),"yyyyMMddHHmmss") + randomNum; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 生成子订单号 |
|
|
|
* 生成子订单号 |
|
|
|
* @return |
|
|
|
* @return |
|
|
|