代码提交

This commit is contained in:
liang.chao 2025-03-11 18:05:29 +08:00
parent 4c9133c563
commit 9c2a5ab361
2 changed files with 10 additions and 2 deletions

View File

@ -65,6 +65,11 @@ public class AgreementInfo extends BaseEntity {
*/
@ApiModelProperty(value = "工程标段ID")
private Long projectId;
/**
* 工程标段ID
*/
@ApiModelProperty(value = "工程标段ID")
private Long[] projectIds;
/**
* 工程标段

View File

@ -136,8 +136,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="unitId != null and unitId != ''">
and bui.unit_id = #{unitId}
</if>
<if test="projectId != null and projectId != ''">
and bp.lot_id = #{projectId}
<if test="projectIds != null">
AND bp.lot_id IN
<foreach item="projectId" collection="projectIds" open="(" separator="," close=")">
#{projectId}
</foreach>
</if>
<if test="sltStatus != null">
and bai.is_slt = #{sltStatus}