Administrator
2025-02-20 06ed77d317b8012ea0389cfd1405db9a425c0c7d
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);
}