This commit is contained in:
zt
2025-02-27 16:56:13 +08:00
parent 5d1c3b39e2
commit 0c36f27726
6 changed files with 13 additions and 3 deletions

View File

@ -37,10 +37,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
bptp.task_name,
bptp.project_name
from bgt_project_task_progress bptp
where bptp.uploader_id = #{dto.createBy}
where bptp.uploader_id = #{dto.uploaderId}
<if test="dto.auditStatus != null and dto.auditStatus != '' ">
and bptp.audit_status = #{dto.auditStatus}
</if>
<if test="dto.taskId != null">
and bptp.task_id = #{dto.taskId}
</if>
</select>
</mapper>