package com.lf.server.service.show; import com.lf.server.entity.show.PipelineEntity; import com.lf.server.mapper.show.PipelineMapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; /** * 管道分析服务类 * @author WWW */ @Service public class PipelineService implements PipelineMapper { @Autowired PipelineMapper pipelineMapper; @Override public List selectSegNames() { return pipelineMapper.selectSegNames(); } @Override public List selectPipeAnalysis(String tab, Integer gid) { return pipelineMapper.selectPipeAnalysis(tab, gid); } }