fix:审批单查询不限制系统管理员

dev_1.0.2
jiangpeng 2026-07-21 20:31:51 +08:00
parent 4e4792459c
commit 2c6547f5ec
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="processName != null and processName != ''"> and process_name like concat('%', #{processName}, '%')</if>
<if test="taskName != null and taskName != ''"> and task_name like concat('%', #{taskName}, '%')</if>
<if test="approveUserName != null and approveUserName != ''"> and approve_user_name = #{approveUserName}</if>
<if test="approveUser != null and approveUser != ''"> and approve_user = #{approveUser}</if>
<if test="approveUser != null and approveUser != '' and approveUser != 1"> and approve_user = #{approveUser}</if>
<if test="applyUserName != null and applyUserName != ''"> and apply_user_name like concat('%', #{applyUserName}, '%')</if>
<if test="applyTime != null "> and apply_time like concat(date_format(#{applyTime},'%y-%m-%d'),'%')</if>
<if test="extendField1 != null and extendField1 != ''"> and extend_field1 like concat('%',#{extendField1},'%')</if>