标前立项bug修改

This commit is contained in:
2025-11-28 15:22:39 +08:00
parent fa9fcb1167
commit b8fb9413de
2 changed files with 11 additions and 0 deletions

View File

@ -48,5 +48,10 @@ public class QuerBiddingManagementDto {
private Integer num;
/**
* 审核状态
*/
private String auditStatus;
}

View File

@ -87,6 +87,9 @@
xzd_bid_pre_project a
LEFT JOIN xzd_bqlx_project_info b ON a.id = b.bid_pre_project_id
<where>
<if test="bo.auditStatus != null and bo.auditStatus != ''">
AND a.audit_status = #{bo.auditStatus}
</if>
<if test="bo.projectNumber != null and bo.projectNumber != ''">
AND a.project_number = #{bo.projectNumber}
</if>
@ -128,6 +131,9 @@
xzd_bid_pre_project a
LEFT JOIN xzd_bqlx_project_info b ON a.id = b.bid_pre_project_id
<where>
<if test="bo.auditStatus != null and bo.auditStatus != ''">
AND a.audit_status = #{bo.auditStatus}
</if>
<if test="bo.projectNumber != null and bo.projectNumber != ''">
AND a.project_number = #{bo.projectNumber}
</if>