From c0ffe9147554b1e3e4d5459b1cc530d09b55b165 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期二, 12 三月 2024 16:01:14 +0800
Subject: [PATCH] 根据类型查询元数据(用于计算面积)

---
 src/main/java/com/lf/server/mapper/show/OneMapMapper.java |  109 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 109 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/lf/server/mapper/show/OneMapMapper.java b/src/main/java/com/lf/server/mapper/show/OneMapMapper.java
index 6a212e4..86f2fe9 100644
--- a/src/main/java/com/lf/server/mapper/show/OneMapMapper.java
+++ b/src/main/java/com/lf/server/mapper/show/OneMapMapper.java
@@ -1,15 +1,20 @@
 package com.lf.server.mapper.show;
 
 import com.lf.server.entity.bs.MpipelineEntity;
+import com.lf.server.entity.ctrl.CountEntity;
+import com.lf.server.entity.ctrl.IdNameEntity;
 import com.lf.server.entity.show.OneMapEntity;
+import org.apache.ibatis.annotations.MapKey;
 import org.apache.ibatis.annotations.Mapper;
 import org.apache.ibatis.annotations.Param;
 import org.springframework.stereotype.Repository;
 
 import java.util.List;
+import java.util.Map;
 
 /**
  * 绠$綉涓�寮犲浘Mapper
+ *
  * @author 閭㈤敠鍙�
  */
 @Mapper
@@ -42,6 +47,13 @@
      * @return {@link List}<{@link String}>
      */
     public List<String> provinceDimensionCount();
+
+    /**
+     * 鍏ㄥ浗缁村害-鎸夌収椤硅嚜绫诲瀷缁熻涓嶅悓椤圭洰涓暟
+     *
+     * @return {@link List}<{@link String}>
+     */
+    public List<String> countProjectTypeNumber();
 
     /**
      * 鏁版嵁瀛樺偍conut
@@ -143,4 +155,101 @@
      * @return {@link List}<{@link String}>
      */
     public List<String> queryTableInfo(@Param("tableName") String tableName);
+
+    /**
+     * 璁$畻鍏ㄧ悆绠¢亾鍥�
+     *
+     * @return {@link List}<{@link String}>
+     */
+    public List<String> countGlobalPipeMap();
+
+    /**
+     * 璁$畻鍏ㄥ浗绠¢亾鍥�
+     *
+     * @return {@link List}<{@link String}>
+     */
+    public List<String> countNationalPipeMap();
+
+    /**
+     * 鍏ㄥ浗绠$綉鍥捐緭閫佷粙璐ㄩ暱搴�
+     *
+     * @return {@link List}<{@link String}>
+     */
+    public List<String> countZhPipeMapLenByMed();
+
+    /**
+     * 鍏ㄥ浗绔欏満搴ф暟銆侀榾瀹ゃ�佺閬撴暟绛�
+     *
+     * @return {@link List}<{@link String}>
+     */
+    public List<String> countZhPipeStations();
+
+    /**
+     * 鎸夐」鐩粺璁¢」鐩瓨鍌ㄩ噺
+     *
+     * @return {@link List}<{@link String}>
+     */
+    public List<String> countStorageByProject();
+
+    /**
+     * 閫夋嫨椤圭洰淇℃伅
+     * 鏌ヨ椤圭洰淇℃伅
+     *
+     * @param projectCode 椤圭洰缂栫爜
+     * @return {@link List}<{@link String}>
+     */
+    public List<String> selectProjectInfo(String projectCode);
+
+    /**
+     * 閫夋嫨椤圭洰鏂囦欢鍒楄〃
+     *
+     * @return {@link List}<{@link String}>
+     */
+    public List<String> selectProjectFileList();
+
+    /**
+     * 璁$畻瀛樺偍椤圭洰
+     *
+     * @param projectCode 椤圭洰浠g爜
+     * @return {@link List}<{@link String}>
+     */
+    public List<String> countProjectStorage(String projectCode);
+
+    /**
+     * 鍗曚釜椤圭洰鏂囦欢鏁伴噺
+     *
+     * @param projectCode 椤圭洰浠g爜
+     * @return
+     */
+    @MapKey("")
+    public List<Map<String, Object>> countProjectType(String projectCode);
+
+    /**
+     * 缁熻椤圭洰涓�
+     *
+     * @param projectCode 椤圭洰浠g爜
+     * @return {@link List}<{@link String}>
+     */
+    public List<String> countProjectDown(String projectCode);
+
+    /**
+     * 鎸夊ぇ绫荤粺璁� - 鏁版嵁缁熻
+     *
+     * @return
+     */
+    public List<CountEntity> countByMajor();
+
+    /**
+     * 鏌ヨ涓嚎缂撳啿鍖�
+     *
+     * @return
+     */
+    public Integer selectLineBuffer();
+
+    /**
+     * 鏍规嵁绫诲瀷鏌ヨ鍏冩暟鎹紙鐢ㄤ簬璁$畻闈㈢Н锛�
+     *
+     * @return
+     */
+    public List<IdNameEntity> selectMetaByType();
 }

--
Gitblit v1.9.3