class CompanyQueryParamDto下
/** 多城市id */
private List<Long> cityIds;
xml
<if test="cityIds != null and cityIds.size() > 0">
and a.city_id in
<foreach collection="cityIds" item="item" open="(" close=")" separator=",">
${item}
</foreach>
</if>
```




