From bda1153c2e149098782b6b25970a5aba0bb74640 Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Fri, 12 Nov 2021 09:15:28 +0800
Subject: [PATCH] 1.许可

---
 src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml |   25 +++++++++++++++++--------
 1 files changed, 17 insertions(+), 8 deletions(-)

diff --git a/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml b/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
index 5c44ef9..c09deef 100644
--- a/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
+++ b/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
@@ -38,19 +38,28 @@
 
 
     <select id="selectRecordkPage" resultMap="recordkResultMap">
-        select * from sys_recordk where 1=1
+        select * from sys_recordk si left join
+        sys_jurisdiction sj
+        on
+        sj.id = si.jurisdiction where 1=1
         <if test="recordk.ptype!=null and recordk.ptype!=''">
-            and  ptype=#{recordk.ptype}
+            and ptype=#{recordk.ptype}
         </if>
-        <if test="recordk.usetype=='1'.toString()">
-            and jurisdiction in(${jurisdiction})
+        <if test="recordk.jurisdiction!=null and recordk.jurisdiction != '' and recordk.jurisdiction!='1372091709474910209'">
+            and (sj.id = #{recordk.jurisdiction} or sj.parent_id = #{recordk.jurisdiction})
         </if>
-        <if test="recordk.usetype=='2'.toString()">
-            and jurisdiction=#{recordk.jurisdiction}
-        </if>
+        <!--        <if test="recordk.usetype=='1'.toString()">-->
+        <!--            and jurisdiction in(${jurisdiction})-->
+        <!--        </if>-->
+        <!--        <if test="recordk.usetype=='2'.toString()">-->
+        <!--            and jurisdiction=#{recordk.jurisdiction}-->
+        <!--        </if>-->
     </select>
 
     <select id="selectIn" resultType="java.util.HashMap">
-        select * from sys_recordk where cardid=#{cardid} and ptype=#{type}
+        select *
+        from sys_recordk
+        where cardid = #{cardid}
+          and ptype = #{type}
     </select>
 </mapper>

--
Gitblit v1.9.3