This commit is contained in:
zt
2025-03-04 11:35:16 +08:00
parent f3dd1096b7
commit d1c4cddd91

View File

@ -180,7 +180,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
LEFT JOIN LEFT JOIN
wgz_pay_calculation_files f ON w.id = f.calculation_id wgz_pay_calculation_files f ON w.id = f.calculation_id
where w.auditor_user_id = #{dto.auditorUserId} where w.auditor_user_id = #{dto.auditorUserId}
and a.task_id = #{dto.taskId}
<if test="dto.taskId != null">
and a.task_id = #{dto.taskId}
</if>
<if test="dto.username != null and dto.username != ''"> <if test="dto.username != null and dto.username != ''">
and w.user_name like concat('%', #{dto.userName}, '%') and w.user_name like concat('%', #{dto.userName}, '%')
</if> </if>