package com.moon.server.mapper.show; import com.moon.server.entity.show.PipelineEntity; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; import java.util.List; @Mapper @Repository @SuppressWarnings("ALL") public interface PipelineMapper { public List selectPipelines(String name); public List selectSegNames(); public List selectPipeAnalysis(String tab, Integer gid); }