From cf200a1f92c01ba22c326c49391f748ffb006910 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 05 Jul 2021 17:28:35 +0800 Subject: [PATCH] 20210617 开售开关 --- src/main/java/com/xcong/excoin/modules/otc/service/OtcService.java | 25 +++++++++++++++++++++---- 1 files changed, 21 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 916cabe..7bfb197 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,7 @@ 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> { @@ -29,4 +26,24 @@ 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); + + OtcEntrustOrderEntity otcEntrustListUpdate(long id); + + FebsResponse otcEntrustConfirm(OtcEntrustOrderEntity otcEntrustOrderEntity); } -- Gitblit v1.9.1