From 7c0127773885de45b3ff55f80e3c7bf7c5f5a3a3 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 09 Jun 2020 15:10:25 +0800 Subject: [PATCH] 20200609 代码提交 --- src/main/java/com/xcong/excoin/modules/coin/service/CoinService.java | 15 +++++++++------ 1 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/coin/service/CoinService.java b/src/main/java/com/xcong/excoin/modules/coin/service/CoinService.java index fd61a18..c3ca269 100644 --- a/src/main/java/com/xcong/excoin/modules/coin/service/CoinService.java +++ b/src/main/java/com/xcong/excoin/modules/coin/service/CoinService.java @@ -2,8 +2,11 @@ import java.math.BigDecimal; +import javax.validation.Valid; + import com.baomidou.mybatisplus.extension.service.IService; import com.xcong.excoin.common.response.Result; +import com.xcong.excoin.modules.coin.parameter.dto.RecordsPageDto; import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity; public interface CoinService extends IService<MemberWalletCoinEntity>{ @@ -20,12 +23,6 @@ public Result findWalletCoinBySymbol(String symbol); - public Result getWalletCoinRecords(); - - public Result getWalletContractRecords(); - - public Result getWalletAgentRecords(); - public Result agentTransferToWalletCoin(BigDecimal balance, Integer transfertype); public Result findWalletAgentBySymbol(); @@ -34,4 +31,10 @@ public Result getWalletAgentIntoRecords(); + public Result getWalletCoinRecords(@Valid RecordsPageDto recordsPageDto); + + public Result getWalletContractRecords(@Valid RecordsPageDto recordsPageDto); + + public Result getWalletAgentRecords(@Valid RecordsPageDto recordsPageDto); + } -- Gitblit v1.9.1