24 lines
879 B
XML
24 lines
879 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="com.nflg.wms.repository.mapper.QmsPdiDetectionRulesDeliveryItemMapper">
|
|
|
|
<!-- 导出发货前检查项 -->
|
|
<select id="listForExport" resultType="com.nflg.wms.common.pojo.dto.QmsPdiDeliveryItemExportDTO">
|
|
SELECT
|
|
d.checklist,
|
|
d.sort,
|
|
d.create_by,
|
|
d.create_time
|
|
FROM qms_pdi_detection_rules_delivery_item d
|
|
WHERE d.detection_rules_id = #{detectionRulesId}
|
|
<if test="ids != null and ids.size() > 0">
|
|
AND d.id IN
|
|
<foreach collection="ids" item="id" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</if>
|
|
ORDER BY d.sort ASC, d.id ASC
|
|
</select>
|
|
|
|
</mapper>
|