mybatis 传入list 循环

  SELECT * from lp_customer_info where 1=1
        
            and id in
            
                #{item}
            
        
 IPage queryDeliveryPeopleList(Page page, @Param("ids") List ids);

传入的 类型要为 list ,  要是传入set 集合  会有问题

你可能感兴趣的:(java)