admin
2024-07-29 734dfe9eb0a2176103dce8245c69b1194574c68e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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;
 
 
 
}