package com.taoke.autopay.service.agent;
|
|
import com.taoke.autopay.entity.OrderChannelEnum;
|
import com.taoke.autopay.entity.agent.ChannelAgentSharingRatio;
|
|
import java.util.List;
|
|
/**
|
* @author hxh
|
* @title: ChannelAgentSharingRatioService
|
* @description: TODO
|
* @date 2024/7/26 0:38
|
*/
|
public interface ChannelAgentSharingRatioService {
|
|
/**
|
* @author hxh
|
* @description 设置比例
|
* @date 0:40 2024/7/26
|
* @param: shareRatio
|
* @return void
|
**/
|
public void setShareRatio(ChannelAgentSharingRatio shareRatio);
|
|
/**
|
* @author hxh
|
* @description 获取分成比例
|
* @date 0:41 2024/7/26
|
* @param: agengId
|
* @param: orderChannel
|
* @return com.taoke.autopay.entity.agent.ChannelAgentSharingRatio
|
**/
|
public ChannelAgentSharingRatio getShareRatio(Long agengId, OrderChannelEnum orderChannel);
|
|
|
public List<ChannelAgentSharingRatio> getShareRatios(Long agengId);
|
}
|