From 595b7935a30e84fba1bc3561d05f9d19d3e32e1f Mon Sep 17 00:00:00 2001 From: Administrator <1101184511@qq.com> Date: 星期三, 23 四月 2025 00:45:48 +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