17 lines
875 B
XML
17 lines
875 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.CategoryMapper" >
|
|
<resultMap id="BaseResultMap" type="cn.odliken.pojo.Category" >
|
|
<!--
|
|
WARNING - @mbg.generated
|
|
-->
|
|
<id column="id" property="id" jdbcType="INTEGER" />
|
|
<result column="name" property="name" jdbcType="VARCHAR" />
|
|
<result column="type" property="type" jdbcType="INTEGER" />
|
|
<result column="father_id" property="fatherId" jdbcType="INTEGER" />
|
|
<result column="logo" property="logo" jdbcType="VARCHAR" />
|
|
<result column="slogan" property="slogan" jdbcType="VARCHAR" />
|
|
<result column="cat_image" property="catImage" jdbcType="VARCHAR" />
|
|
<result column="bg_color" property="bgColor" jdbcType="VARCHAR" />
|
|
</resultMap>
|
|
</mapper> |