admin
2025-02-12 e928bc6c4911e87ad89fb9cb155de4a7bc35435e
1
2
3
4
5
6
7
8
9
10
11
12
package com.taoke.autopay.service.agent;
 
import com.taoke.autopay.entity.agent.ChannelAgentSettings;
 
import java.util.List;
 
public interface ChannelAgentSettingService {
    public ChannelAgentSettings selectByAgentId(Long agentId);
    public void update(ChannelAgentSettings settings);
    public void add(ChannelAgentSettings settings);
    public List<ChannelAgentSettings> listByIds(List<Long> agentIds);
}