From b5960d1968e007b91d4d33dd7cbb74f1b566f2c1 Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Fri, 24 May 2024 10:20:01 +0800
Subject: [PATCH] 到期时间修改

---
 src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml |   26 +++++++++++++++++++++-----
 1 files changed, 21 insertions(+), 5 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 b00745e..4b86454 100644
--- a/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
+++ b/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
@@ -8,12 +8,8 @@
         <result column="creditCode" property="creditcode"/>
         <result column="enterpriseName" property="enterprisename"/>
         <result column="representative" property="representative"/>
-        <result column="
-regstsat" property="
-regstsat"/>
         <result column="establishTime" property="establishtime"/>
         <result column="registeredCapital" property="registeredcapital"/>
-        <result column="capital" property="capital"/>
         <result column="organizationCode" property="organizationcode"/>
         <result column="registrationNumber" property="registrationnumber"/>
         <result column="identificationNumber" property="identificationnumber"/>
@@ -27,11 +23,31 @@
         <result column="perid" property="perid"/>
         <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 where is_deleted = 0
+        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