mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-08 05:27:59 +00:00
ref 对账单逻辑调整
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -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));
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user