36 lines
1.7 KiB
XML
36 lines
1.7 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.WmsManufacturingSpecMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.klp.domain.WmsManufacturingSpec" id="WmsManufacturingSpecResult">
|
||
|
|
<result property="specId" column="spec_id"/>
|
||
|
|
<result property="specCode" column="spec_code"/>
|
||
|
|
<result property="specName" column="spec_name"/>
|
||
|
|
<result property="businessUnit" column="business_unit"/>
|
||
|
|
<result property="projectTeam" column="project_team"/>
|
||
|
|
<result property="productModule" column="product_module"/>
|
||
|
|
<result property="identifier" column="identifier"/>
|
||
|
|
<result property="material" column="material"/>
|
||
|
|
<result property="specification" column="specification"/>
|
||
|
|
<result property="processRoute" column="process_route"/>
|
||
|
|
<result property="processParams" column="process_params"/>
|
||
|
|
<result property="scope" column="scope"/>
|
||
|
|
<result property="inspectionStandard" column="inspection_standard"/>
|
||
|
|
<result property="status" column="status"/>
|
||
|
|
<result property="specType" column="spec_type"/>
|
||
|
|
<result property="version" column="version"/>
|
||
|
|
<result property="versionDate" column="version_date"/>
|
||
|
|
<result property="standardHours" column="standard_hours"/>
|
||
|
|
<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>
|