2025-07-18 09:39:09 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
|
<!DOCTYPE mapper
|
2025-07-18 10:12:48 +08:00
|
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
|
<mapper namespace="com.klp.mapper.WmsOrderDetailMapper">
|
2025-07-18 09:39:09 +08:00
|
|
|
|
2025-07-18 10:12:48 +08:00
|
|
|
<resultMap type="com.klp.domain.WmsOrderDetail" id="WmsOrderDetailResult">
|
|
|
|
|
<result property="detailId" column="detail_id"/>
|
2025-07-18 09:39:09 +08:00
|
|
|
<result property="orderId" column="order_id"/>
|
2025-07-18 10:12:48 +08:00
|
|
|
<result property="productId" column="product_id"/>
|
|
|
|
|
<result property="quantity" column="quantity"/>
|
|
|
|
|
<result property="unit" column="unit"/>
|
2025-07-18 09:39:09 +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>
|