62,636
社区成员




public static String generateSequenceID() throws Exception {
String dateTime = DateOper.date2Str(new Date(), "yyyyMMddhhmmss");
String uuid = UUID.randomUUID().toString().replaceAll("-", "").toUpperCase();
String ranEight = String.format("%08d", new Random().nextInt(99999999));
return dateTime + uuid + ranEight;
}