18 lines
987 B
XML
18 lines
987 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="cn.odliken.mapper.OrderItemsMapper" >
|
|
<resultMap id="BaseResultMap" type="cn.odliken.pojo.OrderItems" >
|
|
<!--
|
|
WARNING - @mbg.generated
|
|
-->
|
|
<id column="id" property="id" jdbcType="VARCHAR" />
|
|
<result column="order_id" property="orderId" jdbcType="VARCHAR" />
|
|
<result column="item_id" property="itemId" jdbcType="VARCHAR" />
|
|
<result column="item_img" property="itemImg" jdbcType="VARCHAR" />
|
|
<result column="item_name" property="itemName" jdbcType="VARCHAR" />
|
|
<result column="item_spec_id" property="itemSpecId" jdbcType="VARCHAR" />
|
|
<result column="item_spec_name" property="itemSpecName" jdbcType="VARCHAR" />
|
|
<result column="price" property="price" jdbcType="INTEGER" />
|
|
<result column="buy_counts" property="buyCounts" jdbcType="INTEGER" />
|
|
</resultMap>
|
|
</mapper> |