From e79c1b0d5deb09bd49b4c19d6fb80b5ba5abf23f Mon Sep 17 00:00:00 2001
From: zengh <123456>
Date: Sat, 04 Dec 2021 16:26:10 +0800
Subject: [PATCH] app接口调整

---
 src/main/java/org/springblade/modules/seinspect/mapper/SeinspectMapper.xml |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/src/main/java/org/springblade/modules/seinspect/mapper/SeinspectMapper.xml b/src/main/java/org/springblade/modules/seinspect/mapper/SeinspectMapper.xml
index 0c55533..c48ad61 100644
--- a/src/main/java/org/springblade/modules/seinspect/mapper/SeinspectMapper.xml
+++ b/src/main/java/org/springblade/modules/seinspect/mapper/SeinspectMapper.xml
@@ -13,11 +13,20 @@
         <result column="reviewTime" property="reviewtime"/>
         <result column="insid" property="insid"/>
         <result column="examination_type" property="examinationType"/>
+        <result column="url" property="url"/>
+        <result column="jid" property="jid"/>
+        <result column="deptid" property="deptid"/>
+        <result column="jurisdiction" property="jurisdiction"/>
+        <result column="url" property="url"/>
     </resultMap>
 
 
     <select id="selectSeinspectPage" resultMap="seinspectResultMap">
-        select * from sys_seinspect where is_deleted = 0
+        select * from sys_seinspect
+        where 1=1
+        <if test="seinspect.realname!=null and seinspect.realname != ''">
+            and realName like concat('%', #{seinspect.realname},'%')
+        </if>
     </select>
 
 </mapper>

--
Gitblit v1.9.3