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;
|
}
|
}
|