perf 分账相关字段调整

This commit is contained in:
bootx
2024-06-02 01:54:11 +08:00
parent 990ce7d361
commit d673362577
13 changed files with 26 additions and 22 deletions

View File

@@ -41,9 +41,9 @@ public class UniAllocationController {
@PaymentSign
@InitPaymentContext(PaymentApiCode.ALLOCATION)
@Operation(summary = "触发分账")
@PostMapping("/open")
public DaxResult<AllocationResult> open(@RequestBody AllocationParam param){
@Operation(summary = "发起分账接口")
@PostMapping("/start")
public DaxResult<AllocationResult> start(@RequestBody AllocationParam param){
return DaxRes.ok(allocationService.allocation(param));
}