mybatis foreach迴圈

番茄奈斯發表於2018-12-28

   <if test="capTypList!=null and capTypList.size()!=0">
                and cap_typ in
                 <foreach collection="capTypList" item="item" index="index" open="(" close=")" separator=",">
                    #{item}
                </foreach>
   </if>

 特別注意:

傳入引數:物件,物件的屬相包含capTypList

相關文章