From b7d5e7bf6cb6dc2c6455123a7facd9c903aa81c2 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Mon, 24 May 2021 11:16:00 +0800 Subject: [PATCH] modify --- src/main/java/com/xcong/excoin/modules/otc/service/OtcOrderService.java | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/otc/service/OtcOrderService.java b/src/main/java/com/xcong/excoin/modules/otc/service/OtcOrderService.java index 673bb87..813a90d 100644 --- a/src/main/java/com/xcong/excoin/modules/otc/service/OtcOrderService.java +++ b/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); } -- Gitblit v1.9.1