危化品全生命周期管理后端
heheng
2025-03-06 98c1eca55c66749ee91bd35f3301bf3ff76bee08
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.gkhy.hazmat.admin;
 
 
import cn.hutool.core.lang.generator.UUIDGenerator;
 
public class UuidTest {
    public static void main(String[] args) {
        UUIDGenerator uuidGenerator = new UUIDGenerator();
        for(int i=0;i<130;i++){
            System.out.println(uuidGenerator.next());
        }
    }
}