|
|
@@ -136,6 +136,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="devUpdateddate != null and devUpdateddate != ''"> and d.devUpdateddate = #{devUpdateddate}</if>
|
|
|
<if test="devModifieddate != null and devModifieddate != ''"> and d.devModifieddate = #{devModifieddate}</if>
|
|
|
<if test="devCreateddate != null and devCreateddate != ''"> and d.devCreateddate = #{devCreateddate}</if>
|
|
|
+ <if test="devtypeBidList != null and devtypeBidList.size() > 0">
|
|
|
+ and d.devtypeBid in
|
|
|
+ <foreach collection="devtypeBidList" item="item" open="(" close=")" separator=",">
|
|
|
+ #{item}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
</where>
|
|
|
|
|
|
</select>
|