From c05525b8bfd4715ead445b105ba8f1951e62b831 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期四, 27 十月 2022 00:32:52 +0800
Subject: [PATCH] 优化营销黑名单

---
 service-common/src/main/java/com/java110/common/cmd/machine/CustomCarInOutCmd.java |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/service-common/src/main/java/com/java110/common/cmd/machine/CustomCarInOutCmd.java b/service-common/src/main/java/com/java110/common/cmd/machine/CustomCarInOutCmd.java
index 99a4565..f5cdf45 100644
--- a/service-common/src/main/java/com/java110/common/cmd/machine/CustomCarInOutCmd.java
+++ b/service-common/src/main/java/com/java110/common/cmd/machine/CustomCarInOutCmd.java
@@ -137,8 +137,9 @@
             if(resultVo.getCode() != ResultVo.CODE_OK){
                 throw new CmdException(resultVo.getMsg());
             }
-
-            JSONObject orderInfo = JSONObject.parseObject(resultVo.getData().toString());
+            String data = JSONObject.toJSONString(resultVo.getData());
+            JSONObject orderInfo = JSONObject.parseObject(data);
+            //JSONObject orderInfo = JSONObject.parseObject(resultVo.getData().toString());
 
              tempCarPayOrderDto = new TempCarPayOrderDto();
             tempCarPayOrderDto.setCarNum(reqJson.getString("carNum"));

--
Gitblit v1.8.0