sunshine
2024-11-05 00b4581009af28098da4286a8ef9f4d72c7c5728
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
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<ChannelMechanismConfig> {
    /**
     * 编辑机构渠道配置
     * @param mechanismDto
     */
    void updateConfig(MechanismDto mechanismDto);
 
    /**
     * 通过机构ID获取渠道配置列表
     * @param mechanismId
     * @return
     */
    List<Long> getChannelsByMechanismId(Long mechanismId);
}