xiaoyong931011
2023-08-12 9168569f1274196608ff19c4ed09132b2f0e2e0f
src/main/java/cc/mrbird/febs/dapp/service/DappWalletService.java
@@ -1,5 +1,6 @@
package cc.mrbird.febs.dapp.service;
import cc.mrbird.febs.common.entity.FebsResponse;
import cc.mrbird.febs.common.entity.QueryRequest;
import cc.mrbird.febs.dapp.dto.*;
import cc.mrbird.febs.dapp.entity.DappAccountMoneyChangeEntity;
@@ -18,7 +19,6 @@
public interface DappWalletService {
    WalletInfoVo walletInfo();
    List<DappFundFlowEntity> recordInPage(RecordInPageDto recordInPageDto);
@@ -28,11 +28,6 @@
    IPage<DappWalletMineEntity> walletMineInPage(DappWalletMineEntity walletMine, QueryRequest request);
    IPage<DappAccountMoneyChangeEntity> accountMoneyChangeInPage(DappAccountMoneyChangeEntity change, QueryRequest request);
    Long transfer(TransferDto transferDto);
    BigDecimal calPrice(PriceDto priceDto);
    void withdraw(WithdrawDto withdrawDto);
@@ -48,8 +43,6 @@
    void transferAgain(TransferDto transferDto);
    Long transferA(TransferADto transferADto);
    /**
     * 资产钱包转帐到闪兑钱包3% 手续费(扣币)
     * @param mineToCoinDto
@@ -59,4 +52,12 @@
    Long transferAusd(TransferAusdDto transferAusdDto);
    List<DappFundFlowVo> getRecordVoInPage(RecordInPageDto recordInPageDto);
    void roundCoin(RoundCoinDto roundCoinDto);
    void roundCoinAusdt(RoundCoinDto roundCoinDto);
    FebsResponse withdrawAgree(Long id);
    FebsResponse withdrawDisAgree(Long id);
}