| | |
| | | import com.xcong.excoin.common.response.Result;
|
| | | import com.xcong.excoin.modules.coin.parameter.dto.RecordsPageDto;
|
| | | import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity;
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | public interface CoinService extends IService<MemberWalletCoinEntity>{
|
| | |
|
| | |
| | |
|
| | | public Result getWalletCoinBySymbol(String symbol);
|
| | |
|
| | | public Result getWalletAgentIntoRecords();
|
| | | public Result getWalletAgentIntoRecords(@Valid RecordsPageDto recordsPageDto);
|
| | |
|
| | | public Result getWalletCoinRecords(@Valid RecordsPageDto recordsPageDto);
|
| | |
|
| | |
| | |
|
| | | public Result getWalletAgentRecords(@Valid RecordsPageDto recordsPageDto);
|
| | |
|
| | | 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);
|
| | |
|
| | | Result zhiYaGusd(BigDecimal balance);
|
| | |
|
| | | Result shuhuiGusd(BigDecimal balance);
|
| | | }
|