mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-04 19:49:07 +00:00
feat 流水记录功能微调、新增组合支付样例
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
@@ -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));
|
||||
}
|
||||
}
|
||||
|
@@ -56,8 +56,6 @@ public class WeChatPayService {
|
||||
|
||||
private final PaySyncService paySyncService;
|
||||
|
||||
private final WeChatPaySyncService weChatPaySyncService;
|
||||
|
||||
/**
|
||||
* 校验
|
||||
*/
|
||||
|
Reference in New Issue
Block a user