From 8a6e55cccdef5989b296b04a2c514341db70195f Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Mon, 24 May 2021 14:37:11 +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