xiaoyong931011
2020-05-29 8091536e331c6c7f8a094ec86ef32fd718170797
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 orderId);
   public Result findAllWalletCoinOrder();
   public Result findWalletCoinOrder(Long orderId);
   public Result findCollect(String symbol, Integer type);
   public Result checkIsCollect(String symbol);
}