Administrator
2025-07-27 8d6f2fe54a4456d6e56c4473b951f773b2b362d8
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);
}