admin
2024-07-27 65aaf1c05bd06cefa82ebc40cc3e01cf4ac233c0
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
package com.taoke.autopay.service.impl.agent;
 
import com.taoke.autopay.entity.OrderChannelEnum;
import com.taoke.autopay.entity.agent.ChannelAgentSharingRatio;
import com.taoke.autopay.service.agent.ChannelAgentSharingRatioService;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * @author hxh
 * @title: ChannelAgentSharingRatioServiceImpl
 * @description: TODO
 * @date 2024/7/26 0:38
 */
@Service
public class ChannelAgentSharingRatioServiceImpl implements ChannelAgentSharingRatioService {
    @Override
    public void setShareRatio(ChannelAgentSharingRatio shareRatio) {
 
    }
 
    @Override
    public ChannelAgentSharingRatio getShareRatio(Long agengId, OrderChannelEnum orderChannel) {
        return null;
    }
 
    @Override
    public List<ChannelAgentSharingRatio> getShareRatios(Long agengId) {
        return null;
    }
}