From ba5210dc8c6c537cacc59c18d58baa9744cd2b9d Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 10 五月 2022 11:14:39 +0800
Subject: [PATCH] 优化报修单推送bug

---
 java110-db/src/main/resources/mapper/user/UserAttrV1ServiceDaoImplMapper.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/user/UserAttrV1ServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/user/UserAttrV1ServiceDaoImplMapper.xml
index d44ec50..08d3522 100644
--- a/java110-db/src/main/resources/mapper/user/UserAttrV1ServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/user/UserAttrV1ServiceDaoImplMapper.xml
@@ -53,9 +53,6 @@
         <if test="newBId != null and newBId != ''">
             ,t.b_id = #{newBId}
         </if>
-        <if test="attrId !=null and attrId != ''">
-            , t.attr_id= #{attrId}
-        </if>
         <if test="specCd !=null and specCd != ''">
             , t.spec_cd= #{specCd}
         </if>
@@ -69,6 +66,9 @@
         <if test="userId !=null and userId != ''">
             and t.user_id= #{userId}
         </if>
+        <if test="attrId !=null and attrId != ''">
+            and t.attr_id= #{attrId}
+        </if>
 
     </update>
 

--
Gitblit v1.8.0