From 3dbefbc9bc504637f58ee4e8de8df0224728631d Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期一, 17 十二月 2018 23:08:59 +0800
Subject: [PATCH] 小区服务功能测试完成,包括 添加小区 修改小区 小区成员加入 小区成员退出
---
java110-config/src/main/resources/mapper/user/UserServiceDaoImplMapper.xml | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/java110-config/src/main/resources/mapper/user/UserServiceDaoImplMapper.xml b/java110-config/src/main/resources/mapper/user/UserServiceDaoImplMapper.xml
index fca8aea..effbe90 100644
--- a/java110-config/src/main/resources/mapper/user/UserServiceDaoImplMapper.xml
+++ b/java110-config/src/main/resources/mapper/user/UserServiceDaoImplMapper.xml
@@ -173,31 +173,31 @@
<update id="updateUserInfoInstance" parameterType="map">
update u_user u set u.status_cd = #{statusCd}
<if test="newBId != null and newBId != ''">
- ,s.b_id = #{newBId}
+ ,u.b_id = #{newBId}
</if>
<if test="name !=null and name != ''">
- ,s.name= #{name}
+ ,u.name= #{name}
</if>
<if test="email !=null and email != ''">
- ,s.email= #{email}
+ ,u.email= #{email}
</if>
<if test="address !=null and address != ''">
- ,s.address= #{address}
+ ,u.address= #{address}
</if>
<if test="password !=null and password != ''">
- ,s.password= #{password}
+ ,u.password= #{password}
</if>
<if test="locationCd !=null and locationCd != ''">
- ,s.location_cd= #{locationCd}
+ ,u.location_cd= #{locationCd}
</if>
<if test="age !=null and age != ''">
- ,s.age= #{age}
+ ,u.age= #{age}
</if>
<if test="sex !=null and sex != ''">
- ,s.sex= #{sex}
+ ,u.sex= #{sex}
</if>
<if test="tel !=null and tel != ''">
- ,s.tel= #{tel}
+ ,u.tel= #{tel}
</if>
where 1 = 1
<if test="bId != null and bId != ''">
--
Gitblit v1.8.0