From fb1238cf8982d299cb24536938bbeee942c2226e Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Fri, 12 Nov 2021 08:53:30 +0800
Subject: [PATCH] 成绩修改审核修改成绩合格后修改用户制证状态为未制证

---
 src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml |   13 ++++++++++++-
 1 files changed, 12 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 3de1cfe..5c44ef9 100644
--- a/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
+++ b/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
@@ -30,13 +30,24 @@
         <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">

--
Gitblit v1.9.3