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