package com.iamberry.wechat.service.agentInfo;

import com.iamberry.wechat.core.entity.agentInfo.AgentConfig;
import com.iamberry.wechat.face.agentInfo.AgentInfoService;
import com.iamberry.wechat.service.mapper.AgentInfoMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

/**
 * Created by liuzhiwei on 2017/10/11.
 */
@Service
public class AgentInfoServiceImpl implements AgentInfoService {

    @Autowired
    private AgentInfoMapper agentInfoMapper;

    @Override
    public List<AgentConfig> ListAgentConfig(AgentConfig config) {
        return agentInfoMapper.ListAgentConfig(config);
    }
}