From a491941cece9a90d72c9c6b0aab0e718e39dbd3c Mon Sep 17 00:00:00 2001
From: zhongrj <123456>
Date: Mon, 22 Aug 2022 15:54:22 +0800
Subject: [PATCH] 从业记录新增同步sql 修改,用户新增审查逻辑修改,外网部门只更新状态,不更新审查明细,内网状态和明细都更新
---
src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 58 insertions(+), 2 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..f5b8ba1 100644
--- a/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
+++ b/src/main/java/org/springblade/modules/recordk/mapper/RecordkMapper.xml
@@ -30,16 +30,72 @@
<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"/>
+ <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
+ 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.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 *
+ from sys_recordk
+ where cardid = #{cardid}
+ and ptype = #{type}
+ </select>
+
+ <select id="selectRecordDetail" resultType="org.springblade.modules.recordk.dto.RecordkDTO">
+ select
+ id,
+ ptype,
+ type,
+ permitime,
+ cardid,
+ representativecell,
+ contacts,
+ contactscell,
+ jurisdiction,
+ industry,
+ registration,
+ creditcode,
+ enterprisename,
+ representative,
+ address,
+ overtime,
+ perid,
+ offices,
+ officetime,
+ ksecuritys,
+ kproject,
+ kzipcode,
+ kservicetime,
+ kaddress
+ from sys_recordk
+ where cardid = #{recordk.cardid}
+ and ptype = #{recordk.ptype}
</select>
</mapper>
--
Gitblit v1.9.3