style 修改分账接收方API路径名称

This commit is contained in:
DaxPay
2024-06-03 11:25:03 +08:00
parent 8752cd11df
commit 389497b55f
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ public class QueryAllocReceiverParam extends DaxPayRequest<AllocReceiversModel>
@Override
public String path() {
return "/unipay/query/allocReceiver";
return "/unipay/query/allocationReceiver";
}
@Override

View File

@@ -79,7 +79,7 @@ public class UniQueryController {
@PaymentSign
@InitPaymentContext(PaymentApiCode.QUERY_ALLOCATION_RECEIVER)
@Operation(summary = "分账接收方查询接口")
@PostMapping("/allocReceiver")
@PostMapping("/allocationReceiver")
public DaxResult<AllocReceiversResult> queryAllocReceive(@RequestBody QueryAllocReceiverParam param){
return DaxRes.ok(allocationReceiverService.queryAllocReceive(param));
}