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); }