1
0
mirror of synced 2026-02-14 08:24:25 +08:00

🎨 【微信支付】完善微信商家转账功能API !151

This commit is contained in:
Neror
2025-01-21 11:49:38 +00:00
committed by Binary Wang
parent 24ebc91dca
commit c3b16228c0
7 changed files with 332 additions and 6 deletions

View File

@@ -87,4 +87,19 @@ public class TransferServiceImplTest {
.userName("测试用户").build();
log.info("发起商家转账:{}", this.payService.getTransferService().transferBills(transferBillsRequest));
}
@Test
public void testTransformBillsCancel() throws WxPayException {
log.info("撤销商家转账:{}", this.payService.getTransferService().transformBillsCancel("123456"));
}
@Test
public void testGetBillsByOutBillNo() throws WxPayException {
log.info("商户单号查询转账单:{}", this.payService.getTransferService().getBillsByOutBillNo("123456"));
}
@Test
public void testGetBillsByTransferBillNo() throws WxPayException {
log.info("微信单号查询转账单:{}", this.payService.getTransferService().getBillsByTransferBillNo("123456"));
}
}