From ddae03ebb4297e78c69beab11bc8bd7e9c370913 Mon Sep 17 00:00:00 2001
From: zhongrj <123456>
Date: Wed, 24 Aug 2022 08:43:25 +0800
Subject: [PATCH] 保安公司查询修改,派遣单位字段属性修改
---
src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml | 21 ++++++++++++++++++++-
1 files changed, 20 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..4b86454 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,30 @@
<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"/>
+ <result column="ksecuritys" property="ksecuritys"/>
+ <result column="kproject" property="kproject"/>
+ <result column="kzipcode" property="kzipcode"/>
+ <result column="kservicetime" property="kservicetime"/>
+ <result column="kaddress" property="kaddress"/>
</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