From 734dfe9eb0a2176103dce8245c69b1194574c68e Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期一, 29 七月 2024 20:16:15 +0800
Subject: [PATCH] 代理新功能完善

---
 src/main/java/com/taoke/autopay/service/agent/ChannelAgentSettleService.java |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/taoke/autopay/service/agent/ChannelAgentSettleService.java b/src/main/java/com/taoke/autopay/service/agent/ChannelAgentSettleService.java
index 2cfa4ae..c073226 100644
--- a/src/main/java/com/taoke/autopay/service/agent/ChannelAgentSettleService.java
+++ b/src/main/java/com/taoke/autopay/service/agent/ChannelAgentSettleService.java
@@ -4,6 +4,7 @@
 import com.taoke.autopay.entity.agent.ChannelAgentSettleRecord;
 import com.taoke.autopay.exception.ChannelAgentSettleException;
 
+import java.math.BigDecimal;
 import java.util.List;
 
 public interface ChannelAgentSettleService {
@@ -22,6 +23,28 @@
 
     public void delete(Long id);
 
+    public void processWithdraw(List<Long> ids, boolean pass) throws ChannelAgentSettleException;
+
+    /**
+     * @author hxh 
+     * @description 瀹為檯缁撶畻
+     * @date 19:36 2024/7/29
+     * @param: id
+     * @param: money
+     * @return void
+     **/
+    public void actualSettle(Long id, BigDecimal money) throws ChannelAgentSettleException;
+
+    
+    /**
+     * @author hxh 
+     * @description /鐢宠鎻愮幇
+     * @date 19:57 2024/7/29
+     * @param: id
+     * @return void
+     **/
+    public void applyWithdraw(Long id) throws ChannelAgentSettleException;
+
 
 
 }

--
Gitblit v1.8.0