From e8a43c513da23b8b2aec0a09e602206b8b56ff5e Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Wed, 01 Dec 2021 15:42:07 +0800
Subject: [PATCH] 1.首页报错
---
src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml | 16 +++++++++++++++-
1 files changed, 15 insertions(+), 1 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 e76b210..6760012 100644
--- a/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
+++ b/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
@@ -24,11 +24,25 @@
<result column="offices" property="offices"/>
<result column="officetime" property="officetime"/>
<result column="deptid" property="deptid"/>
+ <result column="representativecell" property="representativecell"/>
+ <result column="contacts" property="contacts"/>
+ <result column="contactscell" property="contactscell"/>
+ <result column="approve" property="approve"/>
+ <result column="jurisdiction" property="jurisdiction"/>
</resultMap>
<select id="selectRecordkPage" resultMap="recordkResultMap">
- select * from sys_recordk
+ select * from sys_recordk where 1=1
+ <if test="recordk.ptype!=null and recordk.ptype!=''">
+ and ptype=#{recordk.ptype}
+ </if>
+ <if test="recordk.usetype=='1'.toString()">
+ and jurisdiction in(${jurisdiction})
+ </if>
+ <if test="recordk.usetype=='2'.toString()">
+ and jurisdiction=#{recordk.jurisdiction}
+ </if>
</select>
</mapper>
--
Gitblit v1.9.3