test.java 275 B

1234567891011
  1. package com.steerinfo.dil.util;
  2. import com.steerinfo.framework.utils.misc.IdGenerator;
  3. public class test {
  4. public static void main(String[] args) {
  5. for(int i=0;i<1000;i++){
  6. System.out.println(new IdGenerator(i%31,10).getNextStr());
  7. }
  8. }
  9. }