根据时间生成分配批次号
Posted liyue-sqsf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了根据时间生成分配批次号相关的知识,希望对你有一定的参考价值。
1 /** 2 * 根据当前时间生成分配批次号 3 * 4 * @return 5 */ 6 private String createBatchNo() { 7 // 批次号第一部分:时间 8 DateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmss"); 9 String currentTimeStr = dateFormat.format(new Date()); 10 11 // 批次号第二部分:随机数 12 Random random = new Random(); 13 Integer cusCode = random.nextInt(900000) + 100000; 14 String cusCodeStr = cusCode.toString(); 15 16 // 返回分配批次 17 return currentTimeStr + cusCodeStr; 18 }
以上是关于根据时间生成分配批次号的主要内容,如果未能解决你的问题,请参考以下文章