package com.taoke.autopay.service.agent;
|
|
import com.taoke.autopay.dao.agent.ChannelAgentSettleRecordMapper;
|
import com.taoke.autopay.entity.agent.ChannelAgentSettleRecord;
|
import com.taoke.autopay.exception.ChannelAgentSettleException;
|
|
import java.math.BigDecimal;
|
import java.util.List;
|
|
public interface ChannelAgentSettleService {
|
|
/**
|
* 开始结算
|
* @param day
|
*/
|
public void startSettle(String day) throws ChannelAgentSettleException;
|
|
public void settle(ChannelAgentSettleRecord record);
|
|
public List<ChannelAgentSettleRecord> list(ChannelAgentSettleRecordMapper.DaoQuery query);
|
|
public long count(ChannelAgentSettleRecordMapper.DaoQuery query);
|
|
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;
|
|
|
|
}
|