List<Vo> queryList(@Param("param") List<Dto> param);
<select id="queryList" resultType="Vo">
select id
from table
where isvalid = 1
<if test="param != null and param.size() > 0">
and
<foreach collection="param" index="index" item="item" open="(" close=")" separator="or">
(model_identification = #{item.modelIdentification}
and model_version = #{item.modelVersion})
</foreach>
</if>) model
</select>