9 lines
448 B
XML
9 lines
448 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.WmsShipmentMaterialCodeItemMapper">
|
||
|
|
|
||
|
|
<select id="getByCodeId" resultType="com.nflg.wms.common.pojo.vo.WmsShipmentMaterialCodeItemVO">
|
||
|
|
select * from wms_shipment_material_code_item where material_code_id = #{codeId}
|
||
|
|
</select>
|
||
|
|
</mapper>
|