11
This commit is contained in:
@@ -80,9 +80,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<where>
|
||||
f.del_flag = '0'
|
||||
<if test="reviewStatus != null and reviewStatus != ''"> and f.review_status = #{reviewStatus}</if>
|
||||
<if test="userName != null and userName != ''"> and u.name like concat('%', #{userName}, '%')</if>
|
||||
<if test="userName != null and userName != ''"> and u.name like '%' || #{userName} || '%'</if>
|
||||
<if test="userType != null and userType != ''"> and u.is_company_user = #{userType}</if>
|
||||
<if test="userPhone != null and userPhone != ''"> and u.phone like concat('%', #{userPhone}, '%')</if>
|
||||
<if test="userPhone != null and userPhone != ''"> and u.phone like '%' || #{userPhone} || '%'</if>
|
||||
</where>
|
||||
order by f.create_time desc
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user