From 3661018f4e44ec087a8623a54d9435ab84fe134c Mon Sep 17 00:00:00 2001 From: Binary Wang Date: Wed, 24 May 2017 10:49:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../binarywang/wxpay/service/impl/WxPayServiceImpl.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/WxPayServiceImpl.java b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/WxPayServiceImpl.java index 9de0790f..e7c73fa6 100644 --- a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/WxPayServiceImpl.java +++ b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/WxPayServiceImpl.java @@ -21,6 +21,8 @@ import javax.net.ssl.SSLContext; import java.io.File; import java.io.UnsupportedEncodingException; import java.util.HashMap; +import java.util.LinkedList; +import java.util.List; import java.util.Map; /** @@ -320,7 +322,7 @@ public class WxPayServiceImpl implements WxPayService { return wxPayBillResult; } } - + private WxPayBillResult billInformationDeal(String responseContent){ WxPayBillResult wxPayBillResult = new WxPayBillResult(); @@ -388,7 +390,7 @@ public class WxPayServiceImpl implements WxPayService { wxPayBillResult.setTotalRefundFee(totalTempStr[3]); wxPayBillResult.setTotalCouponFee(totalTempStr[4]); wxPayBillResult.setTotalPoundageFee(totalTempStr[5]); - + return wxPayBillResult; }