25 lines
1.1 KiB
XML
25 lines
1.1 KiB
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.klp.mapper.WmsCoilPackingDetailMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.domain.WmsCoilPackingDetail" id="WmsCoilPackingDetailResult">
|
||
|
|
<result property="detailId" column="detail_id"/>
|
||
|
|
<result property="packingId" column="packing_id"/>
|
||
|
|
<result property="coilId" column="coil_id"/>
|
||
|
|
<result property="fromWarehouseId" column="from_warehouse_id"/>
|
||
|
|
<result property="toWarehouseId" column="to_warehouse_id"/>
|
||
|
|
<result property="coilGrossWeight" column="coil_gross_weight"/>
|
||
|
|
<result property="coilNetWeight" column="coil_net_weight"/>
|
||
|
|
<result property="delFlag" column="del_flag"/>
|
||
|
|
<result property="createTime" column="create_time"/>
|
||
|
|
<result property="createBy" column="create_by"/>
|
||
|
|
<result property="updateTime" column="update_time"/>
|
||
|
|
<result property="updateBy" column="update_by"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|