标前立项bug修改
This commit is contained in:
@ -48,5 +48,10 @@ public class QuerBiddingManagementDto {
|
|||||||
|
|
||||||
private Integer num;
|
private Integer num;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 审核状态
|
||||||
|
*/
|
||||||
|
private String auditStatus;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -87,6 +87,9 @@
|
|||||||
xzd_bid_pre_project a
|
xzd_bid_pre_project a
|
||||||
LEFT JOIN xzd_bqlx_project_info b ON a.id = b.bid_pre_project_id
|
LEFT JOIN xzd_bqlx_project_info b ON a.id = b.bid_pre_project_id
|
||||||
<where>
|
<where>
|
||||||
|
<if test="bo.auditStatus != null and bo.auditStatus != ''">
|
||||||
|
AND a.audit_status = #{bo.auditStatus}
|
||||||
|
</if>
|
||||||
<if test="bo.projectNumber != null and bo.projectNumber != ''">
|
<if test="bo.projectNumber != null and bo.projectNumber != ''">
|
||||||
AND a.project_number = #{bo.projectNumber}
|
AND a.project_number = #{bo.projectNumber}
|
||||||
</if>
|
</if>
|
||||||
@ -128,6 +131,9 @@
|
|||||||
xzd_bid_pre_project a
|
xzd_bid_pre_project a
|
||||||
LEFT JOIN xzd_bqlx_project_info b ON a.id = b.bid_pre_project_id
|
LEFT JOIN xzd_bqlx_project_info b ON a.id = b.bid_pre_project_id
|
||||||
<where>
|
<where>
|
||||||
|
<if test="bo.auditStatus != null and bo.auditStatus != ''">
|
||||||
|
AND a.audit_status = #{bo.auditStatus}
|
||||||
|
</if>
|
||||||
<if test="bo.projectNumber != null and bo.projectNumber != ''">
|
<if test="bo.projectNumber != null and bo.projectNumber != ''">
|
||||||
AND a.project_number = #{bo.projectNumber}
|
AND a.project_number = #{bo.projectNumber}
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
Reference in New Issue
Block a user