实体类
添加数组存储值
private ArrayList tssjfjList;
<!-- <if test="tssjfj != null and tssjfj != ''">and tssjfj = #{tssjfj}</if>-->
<if test="tssjfjList != null and tssjfjList.size() > 0">
AND tssjfj IN
<foreach item="item" index="index" collection="tssjfjList" open="(" separator="," close=")">
#{item}
</foreach>
</if>
存在循环且模糊匹配的情况
<if test="corpbqList != null and corpbqList.size() > 0">
AND (
<foreach item="item" index="index" collection="corpbqList" open="(" separator=" OR " close=")">
typed LIKE CONCAT('%', #{item}::text, '%')
</foreach>
)
</if>
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 动态sql 单选变多选
发表评论 取消回复