From 9edafea43dfc92424753a4b1a6ca195783cb3c0c Mon Sep 17 00:00:00 2001 From: qiuyt Date: Wed, 18 Dec 2024 19:34:55 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=89=E5=85=A5=E8=8D=AF=E5=93=81=E5=8A=A0?= =?UTF-8?q?=E4=B8=8A=E7=94=9F=E4=BA=A7=E5=8E=82=E5=AE=B6=E5=AF=B9=E7=85=A7?= =?UTF-8?q?=E6=9F=A5=E4=B8=8D=E5=88=B0=E5=B0=B1=E6=94=B9=E6=8B=AC=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../api/res/alihealth/AlihealthKytDrugrescodeResponse.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/glxp/api/res/alihealth/AlihealthKytDrugrescodeResponse.java b/src/main/java/com/glxp/api/res/alihealth/AlihealthKytDrugrescodeResponse.java index 3c74f692..45b7b47c 100644 --- a/src/main/java/com/glxp/api/res/alihealth/AlihealthKytDrugrescodeResponse.java +++ b/src/main/java/com/glxp/api/res/alihealth/AlihealthKytDrugrescodeResponse.java @@ -28,7 +28,8 @@ public class AlihealthKytDrugrescodeResponse extends AlihealthKytCommonParameter if (jsonArray != null && jsonArray.size() > 0) { for (JSONObject jsonObject : jsonArray) { String entName = jsonObject.getStr("ent_name"); - if(manufactory.equals(entName)){ + if(manufactory.replaceAll("\\(", "(").replace(")", ")") + .equals(entName.replaceAll("\\(", "(").replace(")", ")"))){ bo = true; } }