| | |
| | | import cc.mrbird.febs.dapp.vo.ActiveNftListVo; |
| | | import cc.mrbird.febs.dapp.vo.WalletInfoVo; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | |
| | | |
| | | WalletInfoVo walletInfo(); |
| | | |
| | | void change(WalletOperateDto walletOperateDto); |
| | | |
| | | void withdraw(WalletOperateDto walletOperateDto); |
| | | |
| | | List<DappFundFlowEntity> recordInPage(RecordInPageDto recordInPageDto); |
| | | |
| | | IPage<DappFundFlowEntity> fundFlowInPage(DappFundFlowEntity dappFundFlowEntity, QueryRequest request); |
| | | |
| | | void withdrawAgreeOrNot(Long id, int type); |
| | | |
| | | IPage<DappWalletCoinEntity> walletCoinInPage(DappWalletCoinEntity walletCoin, QueryRequest request); |
| | | IPage<DappWalletMineEntity> walletMineInPage(DappWalletMineEntity walletMine, QueryRequest request); |
| | |
| | | |
| | | Long transfer(TransferDto transferDto); |
| | | |
| | | Map<String, BigDecimal> calPrice(PriceDto priceDto); |
| | | BigDecimal calPrice(PriceDto priceDto); |
| | | |
| | | ActiveNftListVo boxSurprise(); |
| | | void withdraw(WithdrawDto withdrawDto); |
| | | |
| | | void activeNft(ActiveDto activeDto); |
| | | void updateWalletCoinWithLock(BigDecimal amount, Long memberId, int type); |
| | | |
| | | List<ActiveNftListVo> findUnActiveNftList(); |
| | | void updateWalletMineWithLock(BigDecimal amount, Long memberId, int type); |
| | | |
| | | void addFrozenAmountWithLock(BigDecimal amount, Long memberId); |
| | | |
| | | void releaseFrozenAmountWithLock(Long memberId); |
| | | |
| | | DappWalletCoinEntity findByMemberId(Long memberId); |
| | | |
| | | } |