分包商

This commit is contained in:
zt
2025-03-28 10:38:49 +08:00
parent e35e17df3e
commit 14ed939008
16 changed files with 249 additions and 16 deletions

View File

@ -37,13 +37,21 @@ 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.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>
<where>
<if test="dto.uploaderId != null ">
and bptp.uploader_id = #{dto.uploaderId}
</if>
<if test="dto.reviewerId != null ">
and bptp.reviewer_id = #{dto.reviewerId}
</if>
<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>
</where>
</select>
</mapper>