Administrator
2025-04-25 5af707003f4c7b26f09a554a4d3c75c1c6769ab2
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);
}