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.
|
|
|
|
<?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.LdTwoOutStorageDetailMapper">
|
|
|
|
|
|
|
|
|
|
<!-- 二级库出库明细表查询映射结果 -->
|
|
|
|
|
<resultMap id="ldTwoOutStorageDetailResultMap" type="com.nov.KgLowDurable.pojo.entity.LdTwoOutStorageDetail">
|
|
|
|
|
<id column="id" property="id"/>
|
|
|
|
|
<result column="two_inventory_id" property="twoInventoryId"/>
|
|
|
|
|
<result column="two_out_storage_id" property="twoOutStorageId"/>
|
|
|
|
|
<result column="two_out_storage_no" property="twoOutStorageNo"/>
|
|
|
|
|
<result column="two_out_detail_code" property="twoOutDetailCode"/>
|
|
|
|
|
<result column="material_id" property="materialId"/>
|
|
|
|
|
<result column="material_name" property="materialName"/>
|
|
|
|
|
<result column="material_code" property="materialCode"/>
|
|
|
|
|
<result column="model" property="model"/>
|
|
|
|
|
<result column="type" property="type"/>
|
|
|
|
|
<result column="unit" property="unit"/>
|
|
|
|
|
<result column="num" property="num"/>
|
|
|
|
|
<result column="remark" property="remark"/>
|
|
|
|
|
<result column="shipper_status" property="shipperStatus"/>
|
|
|
|
|
<result column="opt_time" property="optTime"/>
|
|
|
|
|
<result column="residue_num" property="residueNum"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
<select id="selectByTwoOutStorageId" resultType="com.nov.KgLowDurable.pojo.entity.LdTwoOutStorageDetail">
|
|
|
|
|
select * from ld_two_out_storage_detail where two_out_storage_id = #{twoOutStorageId}
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
</mapper>
|