This commit is contained in:
雷欧(林平凡)
2025-09-25 16:12:29 +08:00
parent 394cc53f0d
commit 1e43939e20

View File

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