From 412c5b8cabb9c9accb12de9f6598f1625d5e264c Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Wed, 02 Mar 2022 16:21:46 +0800 Subject: [PATCH] fix --- src/main/java/com/xcong/excoin/modules/coin/service/CoinService.java | 8 ++++++++ 1 files changed, 8 insertions(+), 0 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 c5e5e96..624c171 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 @@ -6,7 +6,9 @@ import com.baomidou.mybatisplus.extension.service.IService; import com.xcong.excoin.common.response.Result; +import com.xcong.excoin.modules.coin.parameter.dto.CoinInListDto; import com.xcong.excoin.modules.coin.parameter.dto.RecordsPageDto; +import com.xcong.excoin.modules.coin.parameter.dto.ZhiyaRewardRecordsPageDto; import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity; import org.apache.ibatis.annotations.Param; @@ -53,4 +55,10 @@ Result getZhiyaRecords(RecordsPageDto recordsPageDto); Result getusdtToGusdRecords(RecordsPageDto recordsPageDto); + + void grantZhiyaAmount(); + + Result getZhiyaReward(ZhiyaRewardRecordsPageDto recordsPageDto); + + Result coinInList(CoinInListDto coinInListDto); } -- Gitblit v1.9.1