This commit is contained in:
雷欧(林平凡)
2025-09-25 16:07:48 +08:00
parent ca18865a2d
commit 2b2a15d8fb

View File

@@ -270,6 +270,18 @@ public class InstructionServiceImpl implements IInstructionService {
productWithJF.put("ZQD180F-EB200", "https://u.jd.com/SDBkTJg");
productWithJF.put("CXW-298-IQ92DPRO", "https://u.jd.com/SrWlqkb");
}
private static final List<String> phoneWithTF = new ArrayList<>();
static {
/*
13243039070
15639125541
18539187615
15738558087 */
phoneWithTF.add("13243039070");
phoneWithTF.add("15639125541");
phoneWithTF.add("18539187615");
phoneWithTF.add("15738558087");
}
private String handleTF(String input) {
String body = input.replaceFirst("^TF\\s*", "");
@@ -291,6 +303,7 @@ public class InstructionServiceImpl implements IInstructionService {
address = new StringBuilder(matcher.group());
}
for (int i = 3; i < parts.length; i++) {
System.out.println(parts[i]);
address.append(parts[i]);
}
String jf = productWithJF.get(modelNumber);