32 lines
1.5 KiB
XML
32 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.PtProcessQualityGateMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.pt.domain.PtProcessQualityGate" id="PtProcessQualityGateResult">
|
||
|
|
<result property="gateId" column="gate_id"/>
|
||
|
|
<result property="processId" column="process_id"/>
|
||
|
|
<result property="stepOrder" column="step_order"/>
|
||
|
|
<result property="gateName" column="gate_name"/>
|
||
|
|
<result property="gateType" column="gate_type"/>
|
||
|
|
<result property="inspectionItem" column="inspection_item"/>
|
||
|
|
<result property="measurementMethod" column="measurement_method"/>
|
||
|
|
<result property="frequency" column="frequency"/>
|
||
|
|
<result property="specMin" column="spec_min"/>
|
||
|
|
<result property="specMax" column="spec_max"/>
|
||
|
|
<result property="unit" column="unit"/>
|
||
|
|
<result property="reactionRule" column="reaction_rule"/>
|
||
|
|
<result property="isGateStop" column="is_gate_stop"/>
|
||
|
|
<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>
|