From a217652d33c75df23202828000d82d0ca8555ac2 Mon Sep 17 00:00:00 2001 From: Administrator <1101184511@qq.com> Date: 星期一, 21 四月 2025 02:13:59 +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