Helius
2020-05-27 2dd3a086f2edeb9f364935c3fb98f18c2eea2fa8
src/main/java/com/xcong/excoin/modules/coin/service/OrderCoinService.java
@@ -7,10 +7,24 @@
import com.xcong.excoin.modules.coin.entity.OrderCoinsEntity;
public interface OrderCoinService extends IService<OrderCoinsEntity>{
   public String generateSimpleSerialno(String userId);
   Result enterTransactionPageOfWalletCoin(String symbol, String type);
   Result submitSalesWalletCoinOrder(String symbol, Integer type, Integer tradeType, BigDecimal price,
         BigDecimal amount);
   public Result getEntrustWalletCoinOrder(String symbol, Integer status);
   public Result cancelEntrustWalletCoinOrder(String orderNo);
   public Result findAllWalletCoinOrder();
   public Result findWalletCoinOrder(Long orderId);
   public Result findCollect(String symbol, Integer type);
   public Result checkIsCollect(String symbol);
}