@@ -191,7 +191,10 @@ public class WalletServiceImpl implements IWalletService {
logger.error("签名失败,bizId=" + bizId, e);
throw new ServiceException("支付发起签名失败");
}
- JSONObject data = JSONObject.parseObject(params.toString());
+ // map转为jsonobject
+
+ JSONObject data = JSONObject.parseObject(JSONObject.toJSONString(params));
return data;