From 8d43111bd0e598bc0b2014cbfa69a32e74959dff Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Wed, 15 Dec 2021 19:24:05 +0800
Subject: [PATCH] ftp sql 同步封装
---
src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml | 24 ++++++++++++++++++++++--
1 files changed, 22 insertions(+), 2 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 3de1cfe..c09deef 100644
--- a/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
+++ b/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
@@ -30,16 +30,36 @@
<result column="representativecell" property="representativecell"/>
<result column="contacts" property="contacts"/>
<result column="contactscell" property="contactscell"/>
+ <result column="contactscell" property="contactscell"/>
<result column="storage" property="storage"/>
<result column="approve" property="approve"/>
+ <result column="jurisdiction" property="jurisdiction"/>
</resultMap>
<select id="selectRecordkPage" resultMap="recordkResultMap">
- select * from sys_recordk
+ 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}
+ </if>
+ <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=='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