AgentInfoServiceImpl.java 691 B

12345678910111213141516171819202122232425
  1. package com.iamberry.wechat.service.agentInfo;
  2. import com.iamberry.wechat.core.entity.agentInfo.AgentConfig;
  3. import com.iamberry.wechat.face.agentInfo.AgentInfoService;
  4. import com.iamberry.wechat.service.mapper.AgentInfoMapper;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Service;
  7. import java.util.List;
  8. /**
  9. * Created by liuzhiwei on 2017/10/11.
  10. */
  11. @Service
  12. public class AgentInfoServiceImpl implements AgentInfoService {
  13. @Autowired
  14. private AgentInfoMapper agentInfoMapper;
  15. @Override
  16. public List<AgentConfig> ListAgentConfig(AgentConfig config) {
  17. return agentInfoMapper.ListAgentConfig(config);
  18. }
  19. }