From db93e8671fe9192dcd3ec5b364b65c672073b56e Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Fri, 04 Jun 2021 11:39:19 +0800
Subject: [PATCH] 20210604

---
 src/main/java/com/xcong/excoin/modules/otc/service/OtcService.java |   24 ++++++++++++++++++++----
 1 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/otc/service/OtcService.java b/src/main/java/com/xcong/excoin/modules/otc/service/OtcService.java
index 84c3f68..df0ac3b 100644
--- a/src/main/java/com/xcong/excoin/modules/otc/service/OtcService.java
+++ b/src/main/java/com/xcong/excoin/modules/otc/service/OtcService.java
@@ -4,10 +4,8 @@
 import com.baomidou.mybatisplus.extension.service.IService;
 import com.xcong.excoin.common.entity.FebsResponse;
 import com.xcong.excoin.common.entity.QueryRequest;
-import com.xcong.excoin.modules.otc.entity.OtcEntrustOrderEntity;
-import com.xcong.excoin.modules.otc.entity.OtcMarketBussinessEntity;
-import com.xcong.excoin.modules.otc.entity.OtcOrderAppealEntity;
-import com.xcong.excoin.modules.otc.entity.OtcOrderEntity;
+import com.xcong.excoin.modules.otc.entity.*;
+import com.xcong.excoin.modules.otc.vo.OtcAppealInfoVo;
 
 public interface OtcService extends IService<OtcMarketBussinessEntity> {
 
@@ -26,4 +24,22 @@
     IPage<OtcEntrustOrderEntity> otcEntrustList(OtcEntrustOrderEntity otcEntrustOrderEntity, QueryRequest request);
 
     IPage<OtcOrderEntity> otcOrderList(OtcOrderEntity otcOrderEntity, QueryRequest request);
+
+    OtcAppealInfoVo otcAppealInfo(long id);
+
+    OtcOrderEntity otcOrderInfo(long id);
+
+    FebsResponse updateOrderInfo(OtcOrderEntity otcOrderEntity);
+
+    OtcMarketBussinessEntity otcHuiKuan(long id);
+
+    FebsResponse otcHuiKuan(OtcMarketBussinessEntity otcMarketBussinessEntity);
+
+    IPage<OtcSettingEntity> otcSettingList(OtcSettingEntity otcSettingEntity, QueryRequest request);
+
+    OtcSettingEntity otcSettingUpdate(long id);
+
+    FebsResponse updateOtcSetting(OtcSettingEntity otcSettingEntity);
+
+    int reduceCoin(Long id);
 }

--
Gitblit v1.9.1