From 5d167ea6e943dd1574e0e6ed70ff25b8d4830f61 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 16 六月 2022 11:47:49 +0800
Subject: [PATCH] 优化代码

---
 java110-db/src/main/resources/mapper/user/UserServiceDaoImplMapper.xml |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/user/UserServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/user/UserServiceDaoImplMapper.xml
index 93e9941..76bf811 100755
--- a/java110-db/src/main/resources/mapper/user/UserServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/user/UserServiceDaoImplMapper.xml
@@ -569,11 +569,20 @@
         <if test="key != null and key !=''">
             ,u_user_attr ub
         </if>
+        <if test="unionId != null and unionId !=''">
+            ,u_user_attr ua
+        </if>
         where 1= 1
         <if test="openId != null and openId != ''">
             and u.user_id = ua.user_id
             and ua.spec_cd = '100201911001'
             and ua.value = #{openId}
+            and ua.status_cd = '0'
+        </if>
+        <if test="unionId != null and unionId != ''">
+            and u.user_id = ua.user_id
+            and ua.spec_cd = '100201911002'
+            and ua.value = #{unionId}
             and ua.status_cd = '0'
         </if>
         <if test="key != null and key != ''">
@@ -646,11 +655,20 @@
         <if test="openId != null and openId !=''">
             ,u_user_attr ua
         </if>
+        <if test="unionId != null and unionId !=''">
+            ,u_user_attr ua
+        </if>
         where 1= 1
         <if test="openId != null and openId != ''">
             and u.user_id = ua.user_id
             and ua.spec_cd = '100201911001'
             and ua.value = #{openId}
+            and ua.status_cd = '0'
+        </if>
+        <if test="unionId != null and unionId != ''">
+            and u.user_id = ua.user_id
+            and ua.spec_cd = '100201911002'
+            and ua.value = #{unionId}
             and ua.status_cd = '0'
         </if>
         <if test="bId != null and bId !=''">
@@ -680,6 +698,9 @@
         <if test="openId != null and openId !=''">
             ,u_user_attr ua
         </if>
+        <if test="unionId != null and unionId !=''">
+            ,u_user_attr ua
+        </if>
         where 1= 1
         <if test="openId != null and openId != ''">
             and u.user_id = ua.user_id
@@ -687,6 +708,12 @@
             and ua.value = #{openId}
             and ua.status_cd = '0'
         </if>
+        <if test="unionId != null and unionId != ''">
+            and u.user_id = ua.user_id
+            and ua.spec_cd = '100201911002'
+            and ua.value = #{unionId}
+            and ua.status_cd = '0'
+        </if>
         <if test="bId != null and bId !=''">
             and u.b_id = #{bId}
         </if>

--
Gitblit v1.8.0