This commit is contained in:
张良(004796)
2024-01-04 10:26:26 +08:00
parent 584f9dabe6
commit 01a2787d43
27 changed files with 118 additions and 16 deletions

View File

@@ -15,6 +15,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="query.nickname != null and query.nickname != ''">
and t1.nickname like concat('%',#{query.nickname},'%')
</if>
<if test="query.mobile != null and query.mobile != ''">
and t1.mobile = #{query.mobile}
</if>
<if test="query.usercode != null and query.usercode != ''">
and t1.usercode like concat('%',#{query.usercode},'%')
</if>