| | |
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.IService;
|
| | | import com.xcong.excoin.common.response.Result;
|
| | | import com.xcong.excoin.modules.coin.entity.OrderCoinEntity;
|
| | | import com.xcong.excoin.modules.coin.entity.OrderCoinsEntity;
|
| | | import com.xcong.excoin.modules.coin.parameter.dto.FindAllWalletCoinOrderDto;
|
| | |
|
| | | public interface OrderCoinService extends IService<OrderCoinEntity>{
|
| | | public interface OrderCoinService extends IService<OrderCoinsEntity>{
|
| | | |
| | | public String generateSimpleSerialno(String userId);
|
| | |
|
| | | Result enterTransactionPageOfWalletCoin(String symbol, String type);
|
| | | Result enterTransactionPageOfWalletCoin(String symbol);
|
| | |
|
| | | Result submitSalesWalletCoinOrder(String symbol, Integer type, Integer tradeType, BigDecimal price,
|
| | | BigDecimal amount);
|
| | |
|
| | | public Result getEntrustWalletCoinOrder(String symbol, Integer status);
|
| | |
|
| | | public Result cancelEntrustWalletCoinOrder(String orderId);
|
| | |
|
| | | public Result findAllWalletCoinOrder(FindAllWalletCoinOrderDto findAllWalletCoinOrderDto);
|
| | |
|
| | | public Result findWalletCoinOrder(Long orderId);
|
| | |
|
| | | public Result findCollect(String symbol, Integer type);
|
| | |
|
| | | public Result checkIsCollect(String symbol);
|
| | |
|
| | | public Result findCollectList();
|
| | |
|
| | | public Result searchSymbolResultList();
|
| | |
|
| | | public void dealEntrustCoinOrder();
|
| | |
|
| | | }
|