33 lines
1.5 KiB
XML
33 lines
1.5 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.pt.mapper.PtProcessStepParamMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.pt.domain.PtProcessStepParam" id="PtProcessStepParamResult">
|
||
|
|
<result property="paramId" column="param_id"/>
|
||
|
|
<result property="processId" column="process_id"/>
|
||
|
|
<result property="stepOrder" column="step_order"/>
|
||
|
|
<result property="stepName" column="step_name"/>
|
||
|
|
<result property="paramCode" column="param_code"/>
|
||
|
|
<result property="paramNameZh" column="param_name_zh"/>
|
||
|
|
<result property="paramCategory" column="param_category"/>
|
||
|
|
<result property="minValue" column="min_value"/>
|
||
|
|
<result property="maxValue" column="max_value"/>
|
||
|
|
<result property="targetValue" column="target_value"/>
|
||
|
|
<result property="unit" column="unit"/>
|
||
|
|
<result property="isCritical" column="is_critical"/>
|
||
|
|
<result property="alarmMin" column="alarm_min"/>
|
||
|
|
<result property="alarmMax" column="alarm_max"/>
|
||
|
|
<result property="sortOrder" column="sort_order"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
<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"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|