17 lines
546 B
XML
17 lines
546 B
XML
|
<?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="org.asinkj.amz.mapper.BizShipmentPlanMapper">
|
||
|
|
||
|
<select id="selectExistingShipmentIds" resultType="java.lang.String">
|
||
|
SELECT shipmentid
|
||
|
FROM biz_shipment_plan
|
||
|
WHERE del_flag = '0'
|
||
|
WHERE shipmentid IN
|
||
|
<foreach item="id" collection="batchIds" open="(" separator="," close=")">
|
||
|
#{id}
|
||
|
</foreach>
|
||
|
</select>
|
||
|
</mapper>
|