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; /** *

* 服务实现类 *

* * @author * @since 2024-03-07 */ @Service public class MqEcsServiceImpl implements IMqEcsService { @Autowired IMqEcsMapper mqEcsMapper; @Override public List getByEcs(String hostName) { return mqEcsMapper.getByEcs(hostName); } }