Helius
2021-05-21 1b5131451c896d6a3b2c9f72b3d23dc531eb52db
src/main/java/com/xcong/excoin/modules/otc/service/OtcOrderService.java
@@ -11,9 +11,9 @@
public interface OtcOrderService extends IService<OtcOrder> {
    void buyOrder(OtcOrderAddDto orderAddDto);
    Result buyOrder(OtcOrderAddDto orderAddDto);
    void saleOrder(OtcOrderAddDto orderAddDto);
    Result saleOrder(OtcOrderAddDto orderAddDto);
    IPage<OrderListVo> findOrderListInPage(OrderListDto orderListDto);
@@ -24,4 +24,6 @@
    Result findBuyOrderDetail(Long id);
    Result findSaleOrderDetail(Long id);
    void cancelOrder(Long id);
}