xiaoyong931011
2022-02-25 89b7fb1d316cfce7eb98a27c8d668da493933f7f
src/main/java/com/xcong/excoin/modules/coin/service/CoinService.java
@@ -7,6 +7,7 @@
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;
@@ -42,7 +43,19 @@
   void updateWalletBalance(@Param("id") Long id, @Param("availableBalance")BigDecimal availableBalance,@Param("totalBalance")BigDecimal totalBalance, @Param("frozenBalance")BigDecimal frozenBalance);
   Result usdtToGusd(BigDecimal balance, Integer transfertype);
   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);
}