代码提交
This commit is contained in:
parent
4c9133c563
commit
9c2a5ab361
|
|
@ -65,6 +65,11 @@ public class AgreementInfo extends BaseEntity {
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "工程标段ID")
|
@ApiModelProperty(value = "工程标段ID")
|
||||||
private Long projectId;
|
private Long projectId;
|
||||||
|
/**
|
||||||
|
* 工程标段ID
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "工程标段ID")
|
||||||
|
private Long[] projectIds;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 工程标段
|
* 工程标段
|
||||||
|
|
|
||||||
|
|
@ -136,8 +136,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="unitId != null and unitId != ''">
|
<if test="unitId != null and unitId != ''">
|
||||||
and bui.unit_id = #{unitId}
|
and bui.unit_id = #{unitId}
|
||||||
</if>
|
</if>
|
||||||
<if test="projectId != null and projectId != ''">
|
<if test="projectIds != null">
|
||||||
and bp.lot_id = #{projectId}
|
AND bp.lot_id IN
|
||||||
|
<foreach item="projectId" collection="projectIds" open="(" separator="," close=")">
|
||||||
|
#{projectId}
|
||||||
|
</foreach>
|
||||||
</if>
|
</if>
|
||||||
<if test="sltStatus != null">
|
<if test="sltStatus != null">
|
||||||
and bai.is_slt = #{sltStatus}
|
and bai.is_slt = #{sltStatus}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue