From 164a5f26746e4f4b935d93315433ba25f9bb463d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B7=AF=E6=98=8E=E6=85=A7?= <1191093413@qq.com> Date: Thu, 11 Apr 2024 14:42:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=98=8E=E7=BB=86=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E9=94=AE=E6=94=B9=E6=88=90=E5=A4=A7=E5=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../impl/api/ElephantInvoiceApiV6ServiceImpl.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/jianshui-invoice/src/main/java/com/jianshui/invoice/service/impl/api/ElephantInvoiceApiV6ServiceImpl.java b/jianshui-invoice/src/main/java/com/jianshui/invoice/service/impl/api/ElephantInvoiceApiV6ServiceImpl.java index 63a168c..4cb9864 100644 --- a/jianshui-invoice/src/main/java/com/jianshui/invoice/service/impl/api/ElephantInvoiceApiV6ServiceImpl.java +++ b/jianshui-invoice/src/main/java/com/jianshui/invoice/service/impl/api/ElephantInvoiceApiV6ServiceImpl.java @@ -1393,12 +1393,12 @@ public class ElephantInvoiceApiV6ServiceImpl implements IInvoiceApiService { json = JSONUtil.parseObj(data); } // 键值转小写 - JSONObject lowerCaseJson = new JSONObject(); - json.forEach((key, value) -> { - String lowerCaseKey = key.toLowerCase(); - lowerCaseJson.put(lowerCaseKey, value); - }); - return new HXResponse(code, "", lowerCaseJson, true); +// JSONObject lowerCaseJson = new JSONObject(); +// json.forEach((key, value) -> { +// String lowerCaseKey = key.toLowerCase(); +// lowerCaseJson.put(lowerCaseKey, value); +// }); + return new HXResponse(code, "", json, true); } else { return new HXResponse(ztdm, ztxx, "", true); }