18 lines
645 B
XML
18 lines
645 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.klp.mapper.WmsProductBomMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.domain.WmsProductBom" id="WmsProductBomResult">
|
||
|
|
<result property="bomId" column="bom_id"/>
|
||
|
|
<result property="productId" column="product_id"/>
|
||
|
|
<result property="rawMaterialId" column="raw_material_id"/>
|
||
|
|
<result property="quantity" column="quantity"/>
|
||
|
|
<result property="unit" column="unit"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|