1234567891011121314151617 |
- <?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.sooka.mybatis.mapper.TCmsLinkageMapper">
- <resultMap id="BaseResultMap" type="com.sooka.mybatis.model.TCmsLinkage">
- <!--
- WARNING - @mbg.generated
- -->
- <id column="id" jdbcType="INTEGER" property="id" />
- <result column="site_id" jdbcType="INTEGER" property="siteId" />
- <result column="name" jdbcType="VARCHAR" property="name" />
- <result column="parent_id" jdbcType="INTEGER" property="parentId" />
- <result column="grade" jdbcType="INTEGER" property="grade" />
- <result column="childs" jdbcType="VARCHAR" property="childs" />
- <result column="sort_id" jdbcType="SMALLINT" property="sortId" />
- <result column="is_common" jdbcType="BIT" property="isCommon" />
- </resultMap>
- </mapper>
|