This commit is contained in:
jinyu 2015-12-08 12:07:00 +08:00
parent 94ec4a2196
commit 599134cd30
2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,5 @@
package com.foxinmy.weixin4j.mp.type; package com.foxinmy.weixin4j.mp.type;
/** /**
* URL常量类 * URL常量类
* *

View File

@ -93,7 +93,7 @@ public class PayTest {
@Test @Test
public void refundQueryV3() throws WeixinException { public void refundQueryV3() throws WeixinException {
com.foxinmy.weixin4j.payment.mch.RefundRecord record = PAY3 com.foxinmy.weixin4j.payment.mch.RefundRecord record = PAY3
.refundQueryV3(new IdQuery("TT_1427183696238", IdType.TRADENO)); .refundQuery(new IdQuery("TT_1427183696238", IdType.TRADENO));
System.err.println(record); System.err.println(record);
// 这里的验证签名需要把details循环拼接 // 这里的验证签名需要把details循环拼接
String sign = record.getSign(); String sign = record.getSign();
@ -112,7 +112,7 @@ public class PayTest {
c.set(Calendar.MONTH, 2); c.set(Calendar.MONTH, 2);
c.set(Calendar.DAY_OF_MONTH, 24); c.set(Calendar.DAY_OF_MONTH, 24);
System.err.println(c.getTime()); System.err.println(c.getTime());
File file = PAY3.downloadbill(c.getTime(), null); File file = PAY3.downloadBill(c.getTime(), null);
System.err.println(file); System.err.println(file);
} }