2025-07-18 10:12:48 +08:00
|
|
|
<?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>
|
|
|
|
|
|
2025-07-18 17:23:51 +08:00
|
|
|
<select id="listByProductId" resultType="com.klp.domain.WmsProductBom">
|
|
|
|
|
SELECT bom_id, product_id, raw_material_id, quantity, unit, remark
|
|
|
|
|
FROM wms_product_bom
|
|
|
|
|
WHERE product_id = #{productId}
|
|
|
|
|
and del_flag = 0
|
|
|
|
|
</select>
|
|
|
|
|
|
2025-07-18 10:12:48 +08:00
|
|
|
|
|
|
|
|
</mapper>
|