1
0
mirror of synced 2025-12-25 12:08:00 +08:00

🎨 修复接口参数命名错误问题

This commit is contained in:
Binary Wang
2021-09-19 12:59:03 +08:00
parent cabee0f70c
commit 2019efffa3
4 changed files with 14 additions and 16 deletions

View File

@@ -769,8 +769,8 @@ public class BaseWxPayServiceImplTest {
@Test
public void testRefundQueryV3() throws WxPayException {
WxPayRefundQueryV3Request request = new WxPayRefundQueryV3Request();
// request.setOutTradeNo("n1ZvYqjAg3D7LUBa");
request.setOutTradeNo("123456789011");
// request.setOutRefundNo("n1ZvYqjAg3D7LUBa");
request.setOutRefundNo("123456789011");
WxPayRefundQueryV3Result result = this.payService.refundQueryV3(request);
System.out.println(GSON.toJson(result));
}