2026-03-27 16:15:17 +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.WmsTransferOrderMapper">
|
|
|
|
|
|
|
|
|
|
<resultMap type="com.klp.domain.WmsTransferOrder" id="WmsTransferOrderResult">
|
|
|
|
|
<result property="orderId" column="order_id"/>
|
|
|
|
|
<result property="transferNo" column="transfer_no"/>
|
|
|
|
|
<result property="transferName" column="transfer_name"/>
|
|
|
|
|
<result property="transferStatus" column="transfer_status"/>
|
|
|
|
|
<result property="transferTime" column="transfer_time"/>
|
|
|
|
|
<result property="remark" column="remark"/>
|
2026-04-10 09:24:42 +08:00
|
|
|
<result property="transferType" column="transfer_type"/>
|
|
|
|
|
<result property="approveBy" column="approve_by"/>
|
|
|
|
|
<result property="approveTime" column="approve_time"/>
|
|
|
|
|
<result property="approveStatus" column="approve_status"/>
|
2026-03-27 16:15:17 +08:00
|
|
|
<result property="delFlag" column="del_flag"/>
|
|
|
|
|
<result property="createBy" column="create_by"/>
|
|
|
|
|
<result property="updateBy" column="update_by"/>
|
|
|
|
|
<result property="createTime" column="create_time"/>
|
|
|
|
|
<result property="updateTime" column="update_time"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|