From 0abd80878ee9045d5317a2dbeff6c20d2dfdabc0 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Fri, 14 May 2021 15:07:32 +0800
Subject: [PATCH] Merge branch 'yunding' of http://120.27.238.55:7000/r/exchange into yunding
---
src/main/java/com/xcong/excoin/modules/yunding/service/YunDingService.java | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/yunding/service/YunDingService.java b/src/main/java/com/xcong/excoin/modules/yunding/service/YunDingService.java
index f832ac4..56fa6e4 100644
--- a/src/main/java/com/xcong/excoin/modules/yunding/service/YunDingService.java
+++ b/src/main/java/com/xcong/excoin/modules/yunding/service/YunDingService.java
@@ -1,8 +1,35 @@
package com.xcong.excoin.modules.yunding.service;
import com.baomidou.mybatisplus.extension.service.IService;
+import com.xcong.excoin.common.response.Result;
+import com.xcong.excoin.modules.yunding.dto.*;
import com.xcong.excoin.modules.yunding.entity.YdOrderEntity;
public interface YunDingService extends IService<YdOrderEntity> {
+ Result findAllInfo();
+
+ Result getProductList(YdProductListDto ydProductListDto);
+
+ Result findProductInfoById(Long id);
+
+ Result getBalance();
+
+ Result payProduct(PayProductDto payProductDto);
+
+ Result getOrderList(YdOrderListDto ydOrderListDto);
+
+ Result findOrderAllInfo();
+
+ Result getOrderInfo(Long id);
+
+ Result changeUsdt();
+
+ Result insureChangeUsdt(InsureChangeUsdtDto insureChangeUsdtdto);
+
+ Result getAgentList(YdAgentDto ydAgentDto);
+
+ Result bugAgentLevel(BugAgentLeveldto bugAgentLeveldto);
+
+ Result getXchPrice();
}
--
Gitblit v1.9.1