| 1234567891011 | <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"><mapper namespace="com.xunmei.host.video.mapper.IotDvrDiskMapper">    <select id="selectByEquipmentCode" resultType="com.xunmei.common.core.domain.iot.domain.IotDvrDisk">        select * from iot_dvr_disk where host_code in        <foreach collection="codeList" index="index" item="item" open="(" separator="," close=")">            #{item}        </foreach>    </select></mapper>
 |