From 89e99d6ffd85964552cccfc908d6432fbed9bd12 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 08 十月 2019 19:26:10 +0800
Subject: [PATCH] 优化访客登记功能
---
java110-db/src/main/resources/mapper/mapping/MappingServiceDaoImplMapper.xml | 262 +++++++++++++++++++++++++--------------------------
1 files changed, 129 insertions(+), 133 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/mapping/MappingServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/mapping/MappingServiceDaoImplMapper.xml
index 6106823..fc53a5e 100644
--- a/java110-db/src/main/resources/mapper/mapping/MappingServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/mapping/MappingServiceDaoImplMapper.xml
@@ -5,166 +5,162 @@
<mapper namespace="mappingServiceDaoImpl">
<!-- 淇濆瓨鏄犲皠淇℃伅 add by wuxw 2018-07-03 -->
- <insert id="saveMappingInfo" parameterType="Map">
- insert into c_mapping(
-domain,name,remark,id,value,`key`
-) values (
-#{domain},#{name},#{remark},#{id},#{value},#{key}
-)
- </insert>
+ <insert id="saveMappingInfo" parameterType="Map">
+ <![CDATA[
+ insert into c_mapping select
+ #{id},#{domain},#{name},#{key},#{value},#{remark},now(),'0'
+
+ ]]>
+
+ </insert>
- <!-- 鏌ヨ鏄犲皠淇℃伅锛圔usiness锛� add by wuxw 2018-07-03 -->
- <select id="getBusinessMappingInfo" parameterType="Map" resultType="Map">
- select t.operate,t.domain,t.name,t.remark,t.id,t.value,t.key
-from business_mapping t
-where 1 =1
-<if test="operate !=null and operate != ''">
- and t.operate= #{operate}
-</if>
-<if test="domain !=null and domain != ''">
- and t.domain= #{domain}
-</if>
-<if test="name !=null and name != ''">
- and t.name= #{name}
-</if>
-<if test="remark !=null and remark != ''">
- and t.remark= #{remark}
-</if>
-<if test="id !=null and id != ''">
- and t.id= #{id}
-</if>
-<if test="value !=null and value != ''">
- and t.value= #{value}
-</if>
-<if test="key !=null and key != ''">
- and t.`key`= #{key}
-</if>
+ <!-- 鏌ヨ鏄犲皠淇℃伅锛圔usiness锛� add by wuxw 2018-07-03 -->
+ <select id="getBusinessMappingInfo" parameterType="Map" resultType="Map">
+ select t.operate,t.domain,t.name,t.remark,t.id,t.value,t.key
+ from business_mapping t
+ where 1 =1
+ <if test="operate !=null and operate != ''">
+ and t.operate= #{operate}
+ </if>
+ <if test="domain !=null and domain != ''">
+ and t.domain= #{domain}
+ </if>
+ <if test="name !=null and name != ''">
+ and t.name= #{name}
+ </if>
+ <if test="remark !=null and remark != ''">
+ and t.remark= #{remark}
+ </if>
+ <if test="id !=null and id != ''">
+ and t.id= #{id}
+ </if>
+ <if test="value !=null and value != ''">
+ and t.value= #{value}
+ </if>
+ <if test="key !=null and key != ''">
+ and t.`key`= #{key}
+ </if>
- </select>
-
-
-
+ </select>
<!-- 淇濆瓨鏄犲皠淇℃伅鑷� instance琛ㄤ腑 add by wuxw 2018-07-03 -->
<insert id="saveMappingInfoInstance" parameterType="Map">
insert into c_mapping(
-domain,name,remark,status_cd,id,value,key
-) select t.domain,t.name,t.remark,'0',t.id,t.value,t.key from business_mapping t where 1=1
- and t.operate= 'ADD'
-<if test="domain !=null and domain != ''">
- and t.domain= #{domain}
-</if>
-<if test="name !=null and name != ''">
- and t.name= #{name}
-</if>
-<if test="remark !=null and remark != ''">
- and t.remark= #{remark}
-</if>
-<if test="id !=null and id != ''">
- and t.id= #{id}
-</if>
-<if test="value !=null and value != ''">
- and t.value= #{value}
-</if>
-<if test="key !=null and key != ''">
- and t.key= #{key}
-</if>
+ domain,name,remark,status_cd,id,value,key
+ ) select t.domain,t.name,t.remark,'0',t.id,t.value,t.key from business_mapping t where 1=1
+ and t.operate= 'ADD'
+ <if test="domain !=null and domain != ''">
+ and t.domain= #{domain}
+ </if>
+ <if test="name !=null and name != ''">
+ and t.name= #{name}
+ </if>
+ <if test="remark !=null and remark != ''">
+ and t.remark= #{remark}
+ </if>
+ <if test="id !=null and id != ''">
+ and t.id= #{id}
+ </if>
+ <if test="value !=null and value != ''">
+ and t.value= #{value}
+ </if>
+ <if test="key !=null and key != ''">
+ and t.key= #{key}
+ </if>
</insert>
-
<!-- 鏌ヨ鏄犲皠淇℃伅 add by wuxw 2018-07-03 -->
<select id="getMappingInfo" parameterType="Map" resultType="Map">
- select t.domain,t.name,t.remark,t.status_cd,t.status_cd statusCd,t.id,t.value,t.key
-from c_mapping t
-where 1 =1
-<if test="domain !=null and domain != ''">
- and t.domain= #{domain}
-</if>
-<if test="name !=null and name != ''">
- and t.name= #{name}
-</if>
-<if test="remark !=null and remark != ''">
- and t.remark= #{remark}
-</if>
-<if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
-</if>
-<if test="id !=null and id != ''">
- and t.id= #{id}
-</if>
-<if test="value !=null and value != ''">
- and t.value= #{value}
-</if>
-<if test="key !=null and key != ''">
- and t.key= #{key}
-</if>
+ select t.domain,t.name,t.remark,t.status_cd,t.status_cd statusCd,t.id,t.value,t.key
+ from c_mapping t
+ where 1 =1
+ <if test="domain !=null and domain != ''">
+ and t.domain= #{domain}
+ </if>
+ <if test="name !=null and name != ''">
+ and t.name= #{name}
+ </if>
+ <if test="remark !=null and remark != ''">
+ and t.remark= #{remark}
+ </if>
+ <if test="statusCd !=null and statusCd != ''">
+ and t.status_cd= #{statusCd}
+ </if>
+ <if test="id !=null and id != ''">
+ and t.id= #{id}
+ </if>
+ <if test="value !=null and value != ''">
+ and t.value= #{value}
+ </if>
+ <if test="key !=null and key != ''">
+ and t.key= #{key}
+ </if>
order by t.create_time desc
-<if test="page != -1 and page != null ">
- limit #{page}, #{row}
-</if>
+ <if test="page != -1 and page != null ">
+ limit #{page}, #{row}
+ </if>
</select>
-
-
<!-- 淇敼鏄犲皠淇℃伅 add by wuxw 2018-07-03 -->
<update id="updateMappingInfo" parameterType="Map">
- update c_mapping t set t.status_cd = #{statusCd}
+ update c_mapping t set t.status_cd = #{statusCd}
-<if test="domain !=null and domain != ''">
-, t.domain= #{domain}
-</if>
-<if test="name !=null and name != ''">
-, t.name= #{name}
-</if>
-<if test="remark !=null and remark != ''">
-, t.remark= #{remark}
-</if>
-<if test="value !=null and value != ''">
-, t.value= #{value}
-</if>
-<if test="key !=null and key != ''">
-, t.`key`= #{key}
-</if>
- where 1=1 <if test="id !=null and id != ''">
-and t.id= #{id}
-</if>
+ <if test="domain !=null and domain != ''">
+ , t.domain= #{domain}
+ </if>
+ <if test="name !=null and name != ''">
+ , t.name= #{name}
+ </if>
+ <if test="remark !=null and remark != ''">
+ , t.remark= #{remark}
+ </if>
+ <if test="value !=null and value != ''">
+ , t.value= #{value}
+ </if>
+ <if test="key !=null and key != ''">
+ , t.`key`= #{key}
+ </if>
+ where 1=1
+ <if test="id !=null and id != ''">
+ and t.id= #{id}
+ </if>
</update>
<!-- 鏌ヨ鏄犲皠鏁伴噺 add by wuxw 2018-07-03 -->
- <select id="queryMappingsCount" parameterType="Map" resultType="Map">
- select count(1) count
-from c_mapping t
-where 1 =1
-<if test="domain !=null and domain != ''">
- and t.domain= #{domain}
-</if>
-<if test="name !=null and name != ''">
- and t.name= #{name}
-</if>
-<if test="remark !=null and remark != ''">
- and t.remark= #{remark}
-</if>
-<if test="statusCd !=null and statusCd != ''">
- and t.status_cd= #{statusCd}
-</if>
-<if test="id !=null and id != ''">
- and t.id= #{id}
-</if>
-<if test="value !=null and value != ''">
- and t.value= #{value}
-</if>
-<if test="key !=null and key != ''">
- and t.key= #{key}
-</if>
+ <select id="queryMappingsCount" parameterType="Map" resultType="Map">
+ select count(1) count
+ from c_mapping t
+ where 1 =1
+ <if test="domain !=null and domain != ''">
+ and t.domain= #{domain}
+ </if>
+ <if test="name !=null and name != ''">
+ and t.name= #{name}
+ </if>
+ <if test="remark !=null and remark != ''">
+ and t.remark= #{remark}
+ </if>
+ <if test="statusCd !=null and statusCd != ''">
+ and t.status_cd= #{statusCd}
+ </if>
+ <if test="id !=null and id != ''">
+ and t.id= #{id}
+ </if>
+ <if test="value !=null and value != ''">
+ and t.value= #{value}
+ </if>
+ <if test="key !=null and key != ''">
+ and t.key= #{key}
+ </if>
- </select>
+ </select>
</mapper>
--
Gitblit v1.8.0