18 lines
1001 B
XML
18 lines
1001 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.ItemsMapper" >
|
|
<resultMap id="BaseResultMap" type="cn.odliken.pojo.Items" >
|
|
<!--
|
|
WARNING - @mbg.generated
|
|
-->
|
|
<id column="id" property="id" jdbcType="VARCHAR" />
|
|
<result column="item_name" property="itemName" jdbcType="VARCHAR" />
|
|
<result column="cat_id" property="catId" jdbcType="INTEGER" />
|
|
<result column="root_cat_id" property="rootCatId" jdbcType="INTEGER" />
|
|
<result column="sell_counts" property="sellCounts" jdbcType="INTEGER" />
|
|
<result column="on_off_status" property="onOffStatus" jdbcType="INTEGER" />
|
|
<result column="created_time" property="createdTime" jdbcType="TIMESTAMP" />
|
|
<result column="updated_time" property="updatedTime" jdbcType="TIMESTAMP" />
|
|
<result column="content" property="content" jdbcType="LONGVARCHAR" />
|
|
</resultMap>
|
|
</mapper> |