feat 钱包/储值卡/现金流水对接

This commit is contained in:
bootx
2024-02-18 23:37:11 +08:00
parent 2c8d9aa386
commit 0e31863e21
12 changed files with 67 additions and 56 deletions

View File

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

View File

@@ -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));
}
}