| | |
| | | package com.lf.server.mapper.show; |
| | | |
| | | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 管网一张图Mapper |
| | | * @author 邢锦双 |
| | | */ |
| | | @Mapper |
| | | @Repository |
| | | public interface OneMapMapper { |
| | | |
| | | |
| | | /** |
| | | * 项目类别conut |
| | | * |
| | |
| | | */ |
| | | public List<String> countProjectDisplay(); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 统计项目类型 |
| | | * |
| | | * @return {@link List}<{@link String}> |
| | | */ |
| | | public List<String> countProjectType1(); |
| | | //public List<String> countProjectType2(); |
| | | |
| | | /** |
| | | * 查询表信息 |
| | | * |
| | | * @param tableName |
| | | * @return {@link List}<{@link String}> |
| | | */ |
| | | public List<String> queryTableInfo(@Param("tableName") String tableName); |
| | | } |