23 lines
962 B
XML
23 lines
962 B
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.gear.mat.mapper.MatMatPriceHistoryMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.gear.mat.domain.MatMatPriceHistory" id="MatMatPriceHistoryResult">
|
||
|
|
<result property="historyId" column="history_id"/>
|
||
|
|
<result property="materialId" column="material_id"/>
|
||
|
|
<result property="price" column="price"/>
|
||
|
|
<result property="avgPrice" column="avg_price"/>
|
||
|
|
<result property="quantity" column="quantity"/>
|
||
|
|
<result property="delFlag" column="del_flag"/>
|
||
|
|
<result property="createTime" column="create_time"/>
|
||
|
|
<result property="createBy" column="create_by"/>
|
||
|
|
<result property="updateTime" column="update_time"/>
|
||
|
|
<result property="updateBy" column="update_by"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|