Merge branch 'test' into dev

This commit is contained in:
GYJ 2025-01-05 16:30:50 +08:00
commit 4fc6bd5357
1 changed files with 4 additions and 1 deletions

View File

@ -69,7 +69,10 @@ public class AliPayOrderUtil {
// 4 代表长度为4
// d 代表参数为正数型
return machineId+String.format("%015d", hashCodeV);*/
return IdUtil.getSnowflake(1, 1).nextIdStr();
// return IdUtil.getSnowflake(1, 1).nextIdStr();
UUID uuid = UUID.randomUUID();
return uuid.toString().replace("-", "");
}