From 781c2e20a4bb844dae3f4eafbf5f0e494b942ea8 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 25 五月 2023 18:07:08 +0800
Subject: [PATCH] optimize
---
java110-db/src/main/resources/mapper/community/AppServiceDaoImplMapper.xml | 135 ++++++++++++++++++++-------------------------
1 files changed, 60 insertions(+), 75 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/community/AppServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/community/AppServiceDaoImplMapper.xml
old mode 100644
new mode 100755
index 93a4104..868a1f9
--- a/java110-db/src/main/resources/mapper/community/AppServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/community/AppServiceDaoImplMapper.xml
@@ -1,18 +1,13 @@
<?xml version="1.0" encoding="UTF-8" ?>
-<!DOCTYPE mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="appServiceDaoImpl">
<!-- 淇濆瓨搴旂敤淇℃伅 add by wuxw 2018-07-03 -->
<insert id="saveAppInfo" parameterType="Map">
- insert into c_app(
- status_cd,app_id,black_list_ip,name,security_code,remark,while_list_ip
- ) values (
- '0',#{appId},#{blackListIp},#{name},#{securityCode},#{remark},#{whileListIp}
- )
+ insert into c_app(status_cd, app_id, black_list_ip, name, security_code, remark, while_list_ip)
+ values ('0', #{appId}, #{blackListIp}, #{name}, #{securityCode}, #{remark}, #{whileListIp})
</insert>
-
<!-- 鏌ヨ搴旂敤淇℃伅锛圔usiness锛� add by wuxw 2018-07-03 -->
<select id="getBusinessAppInfo" parameterType="Map" resultType="Map">
@@ -39,13 +34,10 @@
<if test="remark !=null and remark != ''">
and t.remark= #{remark}
</if>
-
<if test="whileListIp !=null and whileListIp != ''">
and t.while_list_ip= #{whileListIp}
</if>
-
</select>
-
<!-- 淇濆瓨搴旂敤淇℃伅鑷� instance琛ㄤ腑 add by wuxw 2018-07-03 -->
<insert id="saveAppInfoInstance" parameterType="Map">
@@ -73,9 +65,7 @@
<if test="whileListIp !=null and whileListIp != ''">
and t.while_list_ip= #{whileListIp}
</if>
-
</insert>
-
<!-- 鏌ヨ搴旂敤淇℃伅 add by wuxw 2018-07-03 -->
<select id="getAppInfo" parameterType="Map" resultType="Map">
@@ -87,65 +77,11 @@
<if test="appId !=null and appId != ''">
and t.app_id= #{appId}
</if>
- <if test="blackListIp !=null and blackListIp != ''">
- and t.black_list_ip= #{blackListIp}
- </if>
- <if test="name !=null and name != ''">
- and t.name= #{name}
- </if>
- <if test="securityCode !=null and securityCode != ''">
- and t.security_code= #{securityCode}
- </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="whileListIp !=null and whileListIp != ''">
- and t.while_list_ip= #{whileListIp}
- </if>
- <if test="page != -1 and page != null ">
- limit #{page}, #{row}
- </if>
-
- </select>
-
-
- <!-- 淇敼搴旂敤淇℃伅 add by wuxw 2018-07-03 -->
- <update id="updateAppInfo" parameterType="Map">
- update c_app t set t.status_cd = #{statusCd}
- <if test="blackListIp !=null and blackListIp != ''">
- , t.black_list_ip= #{blackListIp}
- </if>
- <if test="name !=null and name != ''">
- , t.name= #{name}
- </if>
- <if test="securityCode !=null and securityCode != ''">
- , t.security_code= #{securityCode}
- </if>
- <if test="remark !=null and remark != ''">
- , t.remark= #{remark}
- </if>
-
- <if test="whileListIp !=null and whileListIp != ''">
- , t.while_list_ip= #{whileListIp}
- </if>
- where 1=1
- <if test="appId !=null and appId != ''">
- and t.app_id= #{appId}
- </if>
-
- </update>
-
- <!-- 鏌ヨ搴旂敤鏁伴噺 add by wuxw 2018-07-03 -->
- <select id="queryAppsCount" parameterType="Map" resultType="Map">
- select count(1) count
- from c_app t
- where 1 =1
- <if test="appId !=null and appId != ''">
- and t.app_id= #{appId}
+ <if test="appIds !=null ">
+ and t.app_id in
+ <foreach collection="appIds" item="item" open="(" close=")" separator=",">
+ #{item}
+ </foreach>
</if>
<if test="blackListIp !=null and blackListIp != ''">
and t.black_list_ip= #{blackListIp}
@@ -162,12 +98,61 @@
<if test="statusCd !=null and statusCd != ''">
and t.status_cd= #{statusCd}
</if>
-
<if test="whileListIp !=null and whileListIp != ''">
and t.while_list_ip= #{whileListIp}
</if>
-
-
+ <if test="page != -1 and page != null ">
+ limit #{page}, #{row}
+ </if>
</select>
+ <!-- 淇敼搴旂敤淇℃伅 add by wuxw 2018-07-03 -->
+ <update id="updateAppInfo" parameterType="Map">
+ update c_app t set t.status_cd = #{statusCd}
+ , t.black_list_ip= #{blackListIp}
+ <if test="name !=null and name != ''">
+ , t.name= #{name}
+ </if>
+ , t.security_code= #{securityCode}
+ , t.remark= #{remark}
+ , t.while_list_ip= #{whileListIp}
+ where 1=1
+ <if test="appId !=null and appId != ''">
+ and t.app_id= #{appId}
+ </if>
+ </update>
+
+ <!-- 鏌ヨ搴旂敤鏁伴噺 add by wuxw 2018-07-03 -->
+ <select id="queryAppsCount" parameterType="Map" resultType="Map">
+ select count(1) count
+ from c_app t
+ where 1 =1
+ <if test="appId !=null and appId != ''">
+ and t.app_id= #{appId}
+ </if>
+ <if test="appIds !=null ">
+ and t.app_id in
+ <foreach collection="appIds" item="item" open="(" close=")" separator=",">
+ #{item}
+ </foreach>
+ </if>
+ <if test="blackListIp !=null and blackListIp != ''">
+ and t.black_list_ip= #{blackListIp}
+ </if>
+ <if test="name !=null and name != ''">
+ and t.name like concat('%',#{name},'%')
+ </if>
+ <if test="securityCode !=null and securityCode != ''">
+ and t.security_code= #{securityCode}
+ </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="whileListIp !=null and whileListIp != ''">
+ and t.while_list_ip= #{whileListIp}
+ </if>
+ </select>
</mapper>
--
Gitblit v1.8.0