| | |
| | | import com.taoke.autopay.entity.agent.ChannelAgentSettleRecord; |
| | | import com.taoke.autopay.exception.ChannelAgentSettleException; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | public interface ChannelAgentSettleService { |
| | |
| | | |
| | | 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; |
| | | |
| | | |
| | | |
| | | } |