12345678910111213141516171819202122232425262728 |
- package com.fdkankan.log.service.impl;
- import com.fdkankan.log.entity.MqEcs;
- import com.fdkankan.log.mapper.IMqEcsMapper;
- import com.fdkankan.log.service.IMqEcsService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import java.util.List;
- /**
- * <p>
- * 服务实现类
- * </p>
- *
- * @author
- * @since 2024-03-07
- */
- @Service
- public class MqEcsServiceImpl implements IMqEcsService {
- @Autowired
- IMqEcsMapper mqEcsMapper;
- @Override
- public List<MqEcs> getByEcs(String hostName) {
- return mqEcsMapper.getByEcs(hostName);
- }
- }
|