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.WmsPurchasePlanDetailMapper">
|
|
|
|
|
|
|
|
|
|
<resultMap type="com.klp.domain.WmsPurchasePlanDetail" id="WmsPurchasePlanDetailResult">
|
|
|
|
|
<result property="detailId" column="detail_id"/>
|
|
|
|
|
<result property="planId" column="plan_id"/>
|
|
|
|
|
<result property="rawMaterialId" column="raw_material_id"/>
|
|
|
|
|
<result property="owner" column="owner"/>
|
|
|
|
|
<result property="quantity" column="quantity"/>
|
|
|
|
|
<result property="unit" column="unit"/>
|
2025-07-19 14:07:58 +08:00
|
|
|
<result property="status" column="status"/>
|
2025-07-18 10:12:48 +08:00
|
|
|
<result property="remark" column="remark"/>
|
|
|
|
|
<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"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|