ref 对账单逻辑调整

This commit is contained in:
bootx
2024-05-03 01:37:53 +08:00
parent ec353e0e69
commit 6dbee90a85
32 changed files with 260 additions and 218 deletions

View File

@@ -34,8 +34,8 @@ public class PayCloseRecordController {
@Operation(summary = "查询单条")
@GetMapping("/findById")
public ResResult<PayCloseRecordDto> findById(Long paymentId){
return Res.ok(service.findById(paymentId));
public ResResult<PayCloseRecordDto> findById(Long id){
return Res.ok(service.findById(id));
}
}

View File

@@ -34,8 +34,8 @@ public class PaySyncRecordController {
@Operation(summary = "查询单条")
@GetMapping("/findById")
public ResResult<PaySyncRecordDto> findById(Long paymentId){
return Res.ok(service.findById(paymentId));
public ResResult<PaySyncRecordDto> findById(Long id){
return Res.ok(service.findById(id));
}
}