package com.nova.sankuai.service; import com.baomidou.mybatisplus.extension.service.IService; import com.nova.sankuai.domain.dto.MechanismDto; import com.nova.sankuai.domain.entity.ChannelMechanismConfig; import java.util.List; /** * @author weikangdi * @create 2022/3/31 */ public interface IChannelMechanismConfigService extends IService { /** * 编辑机构渠道配置 * @param mechanismDto */ void updateConfig(MechanismDto mechanismDto); /** * 通过机构ID获取渠道配置列表 * @param mechanismId * @return */ List getChannelsByMechanismId(Long mechanismId); }