From 505503d1adc94273b769ae907310592a2f7a11a9 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Fri, 25 Feb 2022 18:12:02 +0800
Subject: [PATCH] fix
---
src/main/java/com/xcong/excoin/modules/coin/service/CoinService.java | 19 +++++++++++++++++++
1 files changed, 19 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 58cdd57..e506fb8 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
@@ -7,7 +7,9 @@
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.coin.parameter.dto.ZhiyaRewardRecordsPageDto;
import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity;
+import org.apache.ibatis.annotations.Param;
public interface CoinService extends IService<MemberWalletCoinEntity>{
@@ -39,4 +41,21 @@
public Result getAllWalletCoin();
+ void updateWalletBalance(@Param("id") Long id, @Param("availableBalance")BigDecimal availableBalance,@Param("totalBalance")BigDecimal totalBalance, @Param("frozenBalance")BigDecimal frozenBalance);
+
+ Result usdtToGusd(BigDecimal balance,Integer type);
+
+ Result zhiYaGusd(BigDecimal balance);
+
+ Result shuhuiGusd(BigDecimal balance,Long id);
+
+ Result findMemberGusdInfo();
+
+ Result getZhiyaRecords(RecordsPageDto recordsPageDto);
+
+ Result getusdtToGusdRecords(RecordsPageDto recordsPageDto);
+
+ void grantZhiyaAmount();
+
+ Result getZhiyaReward(ZhiyaRewardRecordsPageDto recordsPageDto);
}
--
Gitblit v1.9.1