OrderHeaderHistoryMapper.xml
945 Bytes
<?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.huaheng.pc.order.mapper.OrderHeaderHistoryMapper">
<resultMap id="BaseResultMap" type="com.huaheng.pc.order.domain.OrderHeaderHistory">
<!--@Table order_header_history-->
<result property="id" column="id" jdbcType="INTEGER"/>
<result property="code" column="code" jdbcType="VARCHAR"/>
<result property="name" column="name" jdbcType="VARCHAR"/>
<result property="type" column="type" jdbcType="VARCHAR"/>
<result property="created" column="created" jdbcType="TIMESTAMP"/>
<result property="createdby" column="createdBy" jdbcType="VARCHAR"/>
<result property="lasted" column="lasted" jdbcType="TIMESTAMP"/>
<result property="lastedby" column="lastedBy" jdbcType="VARCHAR"/>
</resultMap>
</mapper>