<?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.lyms.talkonlineweb.mapper.LymsOrderDataMapper">
<resultMap id="BaseResultMap" type="com.lyms.talkonlineweb.domain.LymsOrderData">
<id property="id" column="id" jdbcType="INTEGER"/>
<result property="gid" column="gid" jdbcType="INTEGER"/>
<result property="orderNum" column="order_num" jdbcType="INTEGER"/>
<result property="orderId" column="order_id" jdbcType="INTEGER"/>
<result property="startTime" column="start_time" jdbcType="TIMESTAMP"/>
<result property="endTime" column="end_time" jdbcType="TIMESTAMP"/>
<result property="updatedtime" column="updatedtime" jdbcType="TIMESTAMP"/>
<result property="createdtime" column="createdtime" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id,gid,order_num,
order_id,start_time,end_time,
updatedtime,createdtime
</sql>
</mapper>