Pārlūkot izejas kodu

退款参数加入账单

wujiefeng 1 gadu atpakaļ
vecāks
revīzija
eefd5013bf

+ 1 - 1
FullCardServer/src/main/java/com/zhongshu/card/server/core/service/pay/ChinaumsSenselessPayService.java

@@ -315,7 +315,7 @@ public class ChinaumsSenselessPayService extends SuperService {
         if (!collectionResultContent.getState().equals(ResultState.Success)){
             return ResultContent.buildFail("请求失败");
         }
-        Map<String, Object> bodyMap = BeanUtil.bean2Map(collectionResultContent.getContent());
+        Map bodyMap = JsonUtil.toObject(JsonUtil.toJson(collectionResultContent.getContent()), Map.class);
         if (bodyMap.get("respCode").equals("0000")){
             return ResultContent.buildContent(collectionResultContent.getContent());
         }