|
@@ -52,6 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="nickName" column="nick_name" />
|
|
|
<result property="avatar" column="avatar" />
|
|
|
<result property="phonenumber" column="phonenumber" />
|
|
|
+ <result property="password" column="password" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectUserVo">
|
|
@@ -150,7 +151,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
select user_id, email from sys_user where email = #{email} and del_flag = '0' limit 1
|
|
|
</select>
|
|
|
<select id="getUserInfoList" parameterType="Long" resultMap="SysUserVoResult">
|
|
|
- select user_id, user_name,nick_name,phonenumber,avatar from sys_user where user_id in
|
|
|
+ select user_id, user_name,nick_name,phonenumber,avatar,password from sys_user where user_id in
|
|
|
<foreach collection="array" item="userId" open="(" separator="," close=")">
|
|
|
#{userId}
|
|
|
</foreach>
|