|
@@ -92,7 +92,6 @@ public class CommonUtils {
|
|
|
|
|
|
|
|
|
public static String generateRightsId(long incrementalNumber) {
|
|
|
- int i = (int) incrementalNumber;
|
|
|
String datePart = getDateTime("yyyyMMdd"); // 获取日期部分
|
|
|
String numberPart = String.format("%08d", incrementalNumber); // 格式化数字为5位
|
|
|
return datePart + numberPart;
|