This commit is contained in:
雷欧(林平凡)
2025-09-25 16:27:18 +08:00
parent 0b58b4d1c4
commit eb969db392

View File

@@ -303,9 +303,11 @@ public class InstructionServiceImpl implements IInstructionService {
if (matcher.find()) {
address = new StringBuilder(matcher.group());
}
String phone;
String phone = parts[3];
//从phoneWithTF随机拿一个出来
phone = phoneWithTF.get(new Random().nextInt(phoneWithTF.size()));
if ("13243039070".equals(phone)){
phone = phoneWithTF.get(new Random().nextInt(phoneWithTF.size()));
}
address.append(phone);
System.out.println(address);
for (int i = 4; i < parts.length; i++) {