代码提交
This commit is contained in:
parent
4c9133c563
commit
9c2a5ab361
|
|
@ -65,6 +65,11 @@ public class AgreementInfo extends BaseEntity {
|
|||
*/
|
||||
@ApiModelProperty(value = "工程标段ID")
|
||||
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 != ''">
|
||||
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}
|
||||
|
|
|
|||
Loading…
Reference in New Issue