You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
899 B

5 months ago
<?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.nov.KgLowDurable.mapper.LdOneOutStorageDemandEndMapper">
<!-- 通用查询映射结果 -->
<resultMap id="menuResultMap" type="com.nov.KgLowDurable.pojo.entity.LdOneOutStorageDemandEnd">
<id column="id" property="id"/>
<result column="one_out_storage_id" property="oneOutStorageId"/>
<result column="demand_end_id" property="demandEndId"/>
</resultMap>
<select id="selectByDemandEndId" resultType="com.nov.KgLowDurable.pojo.entity.LdOneOutStorageDemandEnd">
select * from ld_one_out_storage_demand_end
where demand_end_id in
<foreach collection="idList" item="id" open="(" separator="," close=")">
#{id}
</foreach>
</select>
</mapper>