This commit is contained in:
邱贞招 2025-03-28 09:15:25 +08:00
parent a08075b702
commit 67d52614bb

View File

@ -71,6 +71,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="phonenumber != null and phonenumber != ''">
AND u.phonenumber like concat('%', #{phonenumber}, '%')
</if>
<if test="appId != null and appId != ''">
AND u.appid = #{appId}
</if>
<if test="appName != null and appName != ''">
AND u.app_name like concat('%', #{appName}, '%')
</if>
<if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
AND date_format(u.create_time,'%y%m%d') &gt;= date_format(#{params.beginTime},'%y%m%d')
</if>