| New file |
| | |
| | | package com.xcong.excoin.modules.coin.service;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.IService;
|
| | | import com.xcong.excoin.common.response.Result;
|
| | | import com.xcong.excoin.modules.coin.entity.OrderCoinsEntity;
|
| | |
|
| | | public interface OrderCoinService extends IService<OrderCoinsEntity>{
|
| | |
|
| | | Result enterTransactionPageOfWalletCoin(String symbol, String type);
|
| | |
|
| | | Result submitSalesWalletCoinOrder(String symbol, Integer type, Integer tradeType, BigDecimal price,
|
| | | BigDecimal amount);
|
| | |
|
| | | }
|