From 30df94c05573a426d030510d4dd58ae1d93bfb7a Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Mon, 06 Dec 2021 14:03:37 +0800
Subject: [PATCH] 1.资格审查排序
---
src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml | 36 +++++++++++++++++++++++++++++++-----
1 files changed, 31 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..56565a8 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,41 @@
<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="papprove" property="papprove"/>
+ <result column="xapprove" property="xapprove"/>
+ <result column="sapprove" property="sapprove"/>
+ <result column="popinion" property="popinion"/>
+ <result column="xopinion" property="xopinion"/>
+ <result column="sopinion" property="sopinion"/>
+ <result column="cardid" property="cardid"/>
</resultMap>
<select id="selectRecordkPage" resultMap="recordkResultMap">
- select * from sys_recordk where is_deleted = 0
+ select * from sys_recordk si left join
+ sys_jurisdiction sj
+ on
+ sj.id = si.jurisdiction where 1=1
+ <if test="recordk.ptype!=null and recordk.ptype!=''">
+ and ptype=#{recordk.ptype}
+ </if>
+ <if test="recordk.jurisdiction!=null and recordk.jurisdiction != '' and recordk.jurisdiction!='1372091709474910209'">
+ and (sj.id = #{recordk.jurisdiction} or sj.parent_id = #{recordk.jurisdiction})
+ </if>
+ <if test="recordk.papprove!=null and recordk.papprove!=''">
+ and papprove=#{recordk.papprove}
+ </if>
+ <if test="recordk.xapprove!=null and recordk.xapprove!=''">
+ and xapprove=#{recordk.xapprove}
+ </if>
+ <if test="recordk.sapprove!=null and recordk.sapprove!=''">
+ and sapprove=#{recordk.sapprove}
+ </if>
</select>
</mapper>
--
Gitblit v1.9.3