22 lines
1.0 KiB
XML
22 lines
1.0 KiB
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.WmsProcessPlanMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.domain.WmsProcessPlan" id="WmsProcessPlanResult">
|
||
|
|
<result property="planId" column="plan_id"/>
|
||
|
|
<result property="versionId" column="version_id"/>
|
||
|
|
<result property="segmentType" column="segment_type"/>
|
||
|
|
<result property="segmentName" column="segment_name"/>
|
||
|
|
<result property="pointName" column="point_name"/>
|
||
|
|
<result property="pointCode" column="point_code"/>
|
||
|
|
<result property="sortOrder" column="sort_order"/>
|
||
|
|
<result property="createBy" column="create_by"/>
|
||
|
|
<result property="createTime" column="create_time"/>
|
||
|
|
<result property="updateBy" column="update_by"/>
|
||
|
|
<result property="updateTime" column="update_time"/>
|
||
|
|
<result property="delFlag" column="del_flag"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
</mapper>
|