月球大数据地理空间分析展示平台-【后端】-月球后台服务
1
13693261870
2024-11-13 e16f5fdfbc1c49f4c519f05b190e96e497253b51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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<PipelineEntity> selectPipelines(String name);
 
    public List<PipelineEntity> selectSegNames();
 
    public List<PipelineEntity> selectPipeAnalysis(String tab, Integer gid);
}