This commit is contained in:
zt
2025-03-31 09:19:17 +08:00
parent 382af7790e
commit ed14f2399d
7 changed files with 123 additions and 26 deletions

View File

@ -28,6 +28,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
from fbs_project_task_apply fpta
left join bgt_user bu on fpta.user_id = bu.user_id
where fpta.task_id = #{dto.taskId}
<if test="dto.applyStatus != null and dto.applyStatus != ''">
and fpta.apply_status = #{dto.applyStatus}
</if>
order by fpta.id desc
</select>