From 5a53a21e97311d239f57266d58d2d7b6f55c42a6 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Thu, 25 Dec 2025 15:20:24 +0800
Subject: [PATCH] feat(indicator): 更新技术指标基础类和MACD实现

---
 src/main/java/com/xcong/excoin/modules/home/service/MemberQuickBuySaleService.java |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/home/service/MemberQuickBuySaleService.java b/src/main/java/com/xcong/excoin/modules/home/service/MemberQuickBuySaleService.java
index a4e8413..3256044 100644
--- a/src/main/java/com/xcong/excoin/modules/home/service/MemberQuickBuySaleService.java
+++ b/src/main/java/com/xcong/excoin/modules/home/service/MemberQuickBuySaleService.java
@@ -1,9 +1,25 @@
 package com.xcong.excoin.modules.home.service;
 
 import com.baomidou.mybatisplus.extension.service.IService;
+import com.xcong.excoin.common.response.Result;
+import com.xcong.excoin.modules.home.dto.MemberQuickBuySaleCommitDto;
+import com.xcong.excoin.modules.home.dto.MemberQuickBuySaleDto;
 import com.xcong.excoin.modules.home.entity.MemberQuickBuySaleEntity;
+import com.xcong.excoin.modules.member.entity.MemberEntity;
 
 public interface MemberQuickBuySaleService extends IService<MemberQuickBuySaleEntity> {
 
+	public Result recharge(MemberEntity member,MemberQuickBuySaleDto memberQuickBuySaleDto);
 	
+	public Result commitPay(MemberQuickBuySaleCommitDto memberQuickBuySaleCommitDto);
+	
+	public Result selectById(Long id);
+	
+	public Result selectAll(String type);
+	
+	public Result cancelRecharge(Long id);
+	
+	public Result sell(MemberEntity member,MemberQuickBuySaleDto memberQuickBuySaleDto);
+	
+	public Result cancelSell(Long id);
 }

--
Gitblit v1.9.1