临时用户生效日期

This commit is contained in:
sxu 2025-06-05 09:17:02 +08:00
parent bb66cc5ca7
commit 20e330049f
1 changed files with 3 additions and 0 deletions

View File

@ -133,6 +133,9 @@
<if test="status != null and status != ''"> <if test="status != null and status != ''">
AND u.status = #{status} AND u.status = #{status}
</if> </if>
<if test="isPermanent != null and isPermanent != ''">
AND u.is_permanent = #{isPermanent}
</if>
<if test="phonenumber != null and phonenumber != ''"> <if test="phonenumber != null and phonenumber != ''">
AND u.phonenumber like concat('%', #{phonenumber}, '%') AND u.phonenumber like concat('%', #{phonenumber}, '%')
</if> </if>