微信用户模块添加微信名称检索

This commit is contained in:
lc 2024-04-15 16:18:00 +08:00
parent be7b2c2192
commit 167ea6c239

View File

@ -25,6 +25,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<include refid="selectAbucoderWxuserVo"/>
<where>
<if test="openid != null and openid != ''"> and openid = #{openid}</if>
<if test="nickname != null and openid != ''"> and nickname like concat('%', #{nickname}, '%')</if>
<if test="gender != null "> and gender = #{gender}</if>
</where>
</select>