1
0
mirror of synced 2025-12-22 09:58:07 +08:00

实现查询企业付款的API。 finish #51

This commit is contained in:
Binary Wang
2016-10-19 20:28:47 +08:00
parent f54097e19a
commit f0192cc016
5 changed files with 417 additions and 3 deletions

View File

@@ -91,4 +91,13 @@ public class WxMpPayServiceImplTest {
System.err.println(this.wxService.getPayService().entPay(request, keyFile));
}
/**
* Test method for {@link me.chanjar.weixin.mp.api.impl.WxMpPayServiceImpl#queryEntPay(String, File)}.
* @throws WxErrorException
*/
@Test
public final void testQueryEntPay() throws WxErrorException {
File keyFile = new File("E:\\dlt.p12");
System.err.println(this.wxService.getPayService().queryEntPay("11212121", keyFile));
}
}