修改人员查询条件

dev_xd
lj7788 2025-12-25 09:28:33 +08:00
parent 18f6bfbfbc
commit b987300ae9
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="userPhone != null and userPhone != ''"> and psu.user_phone = #{userPhone}</if> <if test="userPhone != null and userPhone != ''"> and psu.user_phone = #{userPhone}</if>
<if test='activeTags == "finished"'> and psu.approve_status <![CDATA[ >= ]]> 100 </if> <if test='activeTags == "finished"'> and psu.approve_status <![CDATA[ >= ]]> 100 </if>
<if test="isDel != null "> and psu.is_del = #{isDel}</if> <if test="isDel != null "> and psu.is_del = #{isDel}</if>
<if test='searchValue == "subUsers"'> and psu.user_post != '66' or psu.user_post is null </if> <if test='searchValue == "subUsers"'> and (psu.user_post != '66' or psu.user_post is null) </if>
<if test='searchValue == "magUsers"'> and psu.user_post = '66' </if> <if test='searchValue == "magUsers"'> and psu.user_post = '66' </if>
<if test='searchValue == "sedUsers"'> and psu.sub_dept_type in ('1','4','5') and psu.user_post not in ('4','5') </if> <if test='searchValue == "sedUsers"'> and psu.sub_dept_type in ('1','4','5') and psu.user_post not in ('4','5') </if>
<if test="params.beginTime != null and params.beginTime != '' and params.endTime != null and params.endTime != ''"> and date(psu.use_date) between #{params.beginTime} and #{params.endTime}</if> <if test="params.beginTime != null and params.beginTime != '' and params.endTime != null and params.endTime != ''"> and date(psu.use_date) between #{params.beginTime} and #{params.endTime}</if>