From 223ba9d693e547781fc27b82262d1bdc93181fe8 Mon Sep 17 00:00:00 2001 From: jinyu Date: Sun, 27 Mar 2016 15:44:58 +0800 Subject: [PATCH] up --- .../weixin4j/mp/oldpayment/PayPackageV2.java | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/weixin4j-mp/src/main/java/com/foxinmy/weixin4j/mp/oldpayment/PayPackageV2.java b/weixin4j-mp/src/main/java/com/foxinmy/weixin4j/mp/oldpayment/PayPackageV2.java index b2102a8b..1fd0ca9f 100644 --- a/weixin4j-mp/src/main/java/com/foxinmy/weixin4j/mp/oldpayment/PayPackageV2.java +++ b/weixin4j-mp/src/main/java/com/foxinmy/weixin4j/mp/oldpayment/PayPackageV2.java @@ -75,8 +75,15 @@ public class PayPackageV2 extends PayPackage { double totalFee, String notifyUrl, String createIp, String attach, Date timeStart, Date timeExpire, double transportFee, double productFee, String goodsTag) { - super(body, outTradeNo, totalFee, notifyUrl, createIp, attach, - timeStart, timeExpire, goodsTag); + setBody(body); + setOutTradeNo(outTradeNo); + setTotalFee(totalFee); + setNotifyUrl(notifyUrl); + setCreateIp(createIp); + setAttach(attach);; + setTimeStart(timeStart); + setTimeExpire(timeExpire); + setGoodsTag(goodsTag); this.bankType = "WX"; this.feeType = "1"; this.inputCharset = "UTF-8"; @@ -142,4 +149,4 @@ public class PayPackageV2 extends PayPackage { + ", productFee=" + productFee + ", inputCharset=" + inputCharset + ", " + super.toString() + "]"; } -} +} \ No newline at end of file