From 1a4792fdff667d3b9590c6ab4c085a08cdca1399 Mon Sep 17 00:00:00 2001
From: zrj <646384940@qq.com>
Date: Thu, 24 Oct 2024 14:07:18 +0800
Subject: [PATCH] 修改端口

---
 src/main/java/org/springblade/modules/hd/mapper/HdMapper.xml |   19 +++++++++++++++++--
 1 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/springblade/modules/hd/mapper/HdMapper.xml b/src/main/java/org/springblade/modules/hd/mapper/HdMapper.xml
index c82ba82..86fd640 100644
--- a/src/main/java/org/springblade/modules/hd/mapper/HdMapper.xml
+++ b/src/main/java/org/springblade/modules/hd/mapper/HdMapper.xml
@@ -15,11 +15,26 @@
 
 
     <select id="selectHdPage" resultMap="hdResultMap">
-        select * from sys_hd where is_deleted = 0
+        select *
+        from sys_hd
     </select>
 
     <select id="selectInList" resultType="java.util.HashMap">
-        select id,hdname from sys_hd
+        select id, hdname
+        from sys_hd
     </select>
 
+    <select id="selectInfo" resultType="java.lang.String">
+        SELECT mapUrl,mapname FROM sys_hdmap where hdid=#{id}
+    </select>
+    <select id="selectInfos" resultType="java.lang.String">
+        SELECT mapname FROM sys_hdmap where hdid=#{id}
+    </select>
+
+<!--    <select id="selectInfo" resultType="java.util.HashMap">-->
+<!--        SELECT h.*,hd.mapUrl as mapurl-->
+<!--        FROM sys_hd h-->
+<!--                 LEFT JOIN sys_hdmap hd ON h.id = hd.hdid where h.id=#{id}-->
+<!--    </select>-->
+
 </mapper>

--
Gitblit v1.9.3