From f0e2074cb81056813fe8b34aa6b7d8a2419e1bdf Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Thu, 11 Nov 2021 20:49:06 +0800
Subject: [PATCH] 新增制证审核
---
src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml | 24 +++++++++++++++++++++++-
1 files changed, 23 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..5c44ef9 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,33 @@
<result column="offices" property="offices"/>
<result column="officetime" property="officetime"/>
<result column="deptid" property="deptid"/>
+ <result column="permitime" property="permitime"/>
+ <result column="ptype" property="ptype"/>
+ <result column="cardid" property="cardid"/>
+ <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 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>
+ <select id="selectIn" resultType="java.util.HashMap">
+ select * from sys_recordk where cardid=#{cardid} and ptype=#{type}
+ </select>
</mapper>
--
Gitblit v1.9.3