12 lines
603 B
XML
12 lines
603 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.WmsShipmentMaterialCodeItemQrMapper">
|
||
|
|
|
||
|
|
<select id="getInfoByQRCode" resultType="com.nflg.wms.common.pojo.vo.ShipmentMaterialCodeQRVO">
|
||
|
|
SELECT qr.id,qr.no,it.material_no,it.material_describe,qr.num,it.unit,qr.status
|
||
|
|
FROM wms_shipment_material_code_item_qr qr
|
||
|
|
INNER JOIN wms_shipment_material_code_item it ON qr.item_id=it."id"
|
||
|
|
where qr.no=#{code}
|
||
|
|
</select>
|
||
|
|
</mapper>
|