33 lines
1.6 KiB
XML
33 lines
1.6 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.flow.mapper.EqpMaintenancePlanDetailMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.flow.domain.EqpMaintenancePlanDetail" id="EqpMaintenancePlanDetailResult">
|
||
|
|
<result property="detailId" column="detail_id"/>
|
||
|
|
<result property="planId" column="plan_id"/>
|
||
|
|
<result property="recordId" column="record_id"/>
|
||
|
|
<result property="equipmentId" column="equipment_id"/>
|
||
|
|
<result property="productionLine" column="production_line"/>
|
||
|
|
<result property="componentName" column="component_name"/>
|
||
|
|
<result property="itemPlanDate" column="item_plan_date"/>
|
||
|
|
<result property="maintenanceCategory" column="maintenance_category"/>
|
||
|
|
<result property="detailStatus" column="detail_status"/>
|
||
|
|
<result property="repairContent" column="repair_content"/>
|
||
|
|
<result property="repairUser" column="repair_user"/>
|
||
|
|
<result property="completeTime" column="complete_time"/>
|
||
|
|
<result property="actualCost" column="actual_cost"/>
|
||
|
|
<result property="progressRate" column="progress_rate"/>
|
||
|
|
<result property="targetManufacturer" column="target_manufacturer"/>
|
||
|
|
<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>
|