30 lines
1.4 KiB
XML
30 lines
1.4 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.PtProcesseMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.pt.domain.PtProcesse" id="PtProcesseResult">
|
||
|
|
<result property="processId" column="process_id"/>
|
||
|
|
<result property="processCode" column="process_code"/>
|
||
|
|
<result property="processName" column="process_name"/>
|
||
|
|
<result property="adaptProductType" column="adapt_product_type"/>
|
||
|
|
<result property="lineId" column="line_id"/>
|
||
|
|
<result property="version" column="version"/>
|
||
|
|
<result property="status" column="status"/>
|
||
|
|
<result property="effectiveDate" column="effective_date"/>
|
||
|
|
<result property="expireDate" column="expire_date"/>
|
||
|
|
<result property="flowOverview" column="flow_overview"/>
|
||
|
|
<result property="targetYield" column="target_yield"/>
|
||
|
|
<result property="standardCapacity" column="standard_capacity"/>
|
||
|
|
<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>
|