23 lines
1.1 KiB
XML
23 lines
1.1 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.WmsProcessPlanParamMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.domain.WmsProcessPlanParam" id="WmsProcessPlanParamResult">
|
||
|
|
<result property="paramId" column="param_id"/>
|
||
|
|
<result property="planId" column="plan_id"/>
|
||
|
|
<result property="paramCode" column="param_code"/>
|
||
|
|
<result property="paramName" column="param_name"/>
|
||
|
|
<result property="targetValue" column="target_value"/>
|
||
|
|
<result property="lowerLimit" column="lower_limit"/>
|
||
|
|
<result property="upperLimit" column="upper_limit"/>
|
||
|
|
<result property="unit" column="unit"/>
|
||
|
|
<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>
|