package org.rancode.framework.util; /** * * 说明:用于生成订单号的工具类 * * @author LS * * */ import java.text.SimpleDateFormat; import java.util.Date; public class BillNo extends Thread { private static long orderNum = 0l; private static String date; /** * 生成订单编号 * */ public static synchronized String getBillNo() { String str = new SimpleDateFormat("yyMMddHHmm").format(new Date()); if (date == null || !date.equals(str)) { date = str; orderNum = 0l; } orderNum++; long orderNo = Long.parseLong((date)) * 10000; orderNo += orderNum; ; return orderNo + ""; } }
最近下载更多
Zyy19820821 LV2
9月24日
ma406805131 LV15
6月25日
1542457015 LV3
2023年11月15日
zcfhh1 LV2
2023年10月3日
微信网友_6608533750566912 LV2
2023年8月16日
Assoc洛晓 LV2
2023年7月24日
2385649653 LV7
2023年6月17日
buhuia LV4
2023年6月9日
y1214435276 LV9
2023年3月22日
漫步的海星 LV4
2023年3月14日
最近浏览更多
lz88888 LV12
10月17日
Zyy19820821 LV2
9月16日
luoyanglin LV2
9月14日
微信网友_7030143019094016 LV1
9月11日
liulian666 LV2
7月19日
大明代码时代 LV7
7月1日
heshao LV2
6月4日
2860615178 LV4
5月29日
hellolu21 LV10
5月16日
strugglerLU LV1
5月13日