feat 流水记录功能微调、新增组合支付样例

This commit is contained in:
bootx
2024-02-19 22:39:15 +08:00
parent aa77586656
commit e55e845adb
8 changed files with 96 additions and 9 deletions

View File

@@ -34,7 +34,7 @@ public class CashController {
@Operation(summary = "查询记录详情")
@GetMapping("/findById")
@GetMapping("/record/findById")
public ResResult<CashRecordDto> findById(Long id){
return Res.ok(cashRecordService.findById(id));
}

View File

@@ -63,4 +63,10 @@ public class VoucherController {
public ResResult<PageResult<VoucherRecordDto>> recordPage(PageParam pageParam, VoucherRecordQuery query){
return Res.ok(voucherRecordService.page(pageParam, query));
}
@Operation(summary = "查询记录详情")
@GetMapping("/record/findById")
public ResResult<VoucherRecordDto> recordFindById(Long id){
return Res.ok(voucherRecordService.findById(id));
}
}

View File

@@ -56,8 +56,6 @@ public class WeChatPayService {
private final PaySyncService paySyncService;
private final WeChatPaySyncService weChatPaySyncService;
/**
* 校验
*/