|
@@ -7,7 +7,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<resultMap type="UserInfo" id="UserInfoResult">
|
|
<resultMap type="UserInfo" id="UserInfoResult">
|
|
<result property="id" column="id" />
|
|
<result property="id" column="id" />
|
|
<result property="phone" column="phone" />
|
|
<result property="phone" column="phone" />
|
|
- <result property="wechar" column="wechar" />
|
|
|
|
<result property="headImage" column="head_image" />
|
|
<result property="headImage" column="head_image" />
|
|
<result property="nickName" column="nick_name" />
|
|
<result property="nickName" column="nick_name" />
|
|
<result property="openid" column="openid" />
|
|
<result property="openid" column="openid" />
|
|
@@ -26,7 +25,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<include refid="selectUserInfoVo"/>
|
|
<include refid="selectUserInfoVo"/>
|
|
<where>
|
|
<where>
|
|
<if test="phone != null and phone != ''"> and phone = #{phone}</if>
|
|
<if test="phone != null and phone != ''"> and phone = #{phone}</if>
|
|
- <if test="wechar != null and wechar != ''"> and wechar = #{wechar}</if>
|
|
|
|
<if test="headImage != null and headImage != ''"> and head_image = #{headImage}</if>
|
|
<if test="headImage != null and headImage != ''"> and head_image = #{headImage}</if>
|
|
<if test="nickName != null and nickName != ''"> and nick_name like concat('%', #{nickName}, '%')</if>
|
|
<if test="nickName != null and nickName != ''"> and nick_name like concat('%', #{nickName}, '%')</if>
|
|
<if test="openid != null and openid != ''"> and openid = #{openid}</if>
|
|
<if test="openid != null and openid != ''"> and openid = #{openid}</if>
|