mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-06 20:47:46 +00:00
feat 钱包/储值卡/现金流水对接
This commit is contained in:
@@ -33,4 +33,11 @@ public class CashController {
|
||||
}
|
||||
|
||||
|
||||
@Operation(summary = "查询记录详情")
|
||||
@GetMapping("/findById")
|
||||
public ResResult<CashRecordDto> findById(Long id){
|
||||
return Res.ok(cashRecordService.findById(id));
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@@ -9,7 +9,7 @@ import cn.bootx.platform.daxpay.service.core.channel.wallet.service.WalletQueryS
|
||||
import cn.bootx.platform.daxpay.service.core.channel.wallet.service.WalletRecordService;
|
||||
import cn.bootx.platform.daxpay.service.core.channel.wallet.service.WalletService;
|
||||
import cn.bootx.platform.daxpay.service.dto.channel.wallet.WalletDto;
|
||||
import cn.bootx.platform.daxpay.service.dto.channel.wechat.WalletRecordDto;
|
||||
import cn.bootx.platform.daxpay.service.dto.channel.wallet.WalletRecordDto;
|
||||
import cn.bootx.platform.daxpay.service.param.channel.wallet.*;
|
||||
import io.swagger.v3.oas.annotations.Operation;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
@@ -77,4 +77,10 @@ public class WalletController {
|
||||
public ResResult<PageResult<WalletRecordDto>> recordPage(PageParam pageParam, WalletRecordQuery query){
|
||||
return Res.ok(walletRecordService.page(pageParam, query));
|
||||
}
|
||||
|
||||
@Operation(summary = "查询记录详情")
|
||||
@GetMapping("/record/findById")
|
||||
public ResResult<WalletRecordDto> findRecordById(Long id){
|
||||
return Res.ok(walletRecordService.findById(id));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user