|
@@ -55,7 +55,7 @@ public class AliSendMessageFactory {
|
|
|
Random random = new Random();
|
|
Random random = new Random();
|
|
|
String result = "";
|
|
String result = "";
|
|
|
for (int i = 0; i < limit; i++) {
|
|
for (int i = 0; i < limit; i++) {
|
|
|
- result += random.nextInt(10);
|
|
|
|
|
|
|
+ result += (random.nextInt(9) + 1);
|
|
|
}
|
|
}
|
|
|
return result;
|
|
return result;
|
|
|
}
|
|
}
|